-
Notifications
You must be signed in to change notification settings - Fork 1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[question] Mantine v7? #9261
Comments
@nomadme - saw your comment from the other issue and forum post; my suggestion is to either use Mantine v6, or work with @redwoodjs to document how to setup v7 |
Mantine v7 setup requires additional steps. Here's how I solved it: module.exports = {
plugins: [
require('postcss-preset-mantine'),
require('postcss-simple-vars')({
variables: {
'mantine-breakpoint-xs': '36em',
'mantine-breakpoint-sm': '48em',
'mantine-breakpoint-md': '62em',
'mantine-breakpoint-lg': '75em',
'mantine-breakpoint-xl': '88em',
},
}),
],
} Then add this import at the top of the import '@mantine/core/styles.css' I will be working on the fix soon. |
tracking in #9316 |
Originally posted by @nomadme in #4900 (comment)
see also: https://community.redwoodjs.com/t/error-mantineprovider-was-not-found-in-component-tree/5390
The text was updated successfully, but these errors were encountered: