tailwind-preset-mantine 1.0.5 → 1.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +9 -3
- package/package.json +1 -1
- package/src/index.js +1 -1
package/README.md
CHANGED
|
@@ -96,13 +96,19 @@ module.exports = {
|
|
|
96
96
|
},
|
|
97
97
|
|
|
98
98
|
// for tailwind
|
|
99
|
-
+
|
|
100
|
-
+
|
|
101
|
-
+
|
|
99
|
+
+ autoprefixer: {},
|
|
100
|
+
+ 'tailwindcss/nesting': {},
|
|
101
|
+
+ tailwindcss: {},
|
|
102
102
|
},
|
|
103
103
|
}
|
|
104
104
|
```
|
|
105
105
|
|
|
106
|
+
## Minimal template
|
|
107
|
+
|
|
108
|
+
Here's a minimal template that you can use to get started:
|
|
109
|
+
|
|
110
|
+
<https://github.com/songkeys/next-app-mantine-tailwind-template>
|
|
111
|
+
|
|
106
112
|
## License
|
|
107
113
|
|
|
108
114
|
MIT
|
package/package.json
CHANGED
package/src/index.js
CHANGED
|
@@ -216,7 +216,7 @@ function generatePrimaryColors() {
|
|
|
216
216
|
700: "var(--mantine-primary-color-7)",
|
|
217
217
|
800: "var(--mantine-primary-color-8)",
|
|
218
218
|
900: "var(--mantine-primary-color-9)",
|
|
219
|
-
DEFAULT: "var(--mantine-primary-color-
|
|
219
|
+
DEFAULT: "var(--mantine-primary-color-filled)",
|
|
220
220
|
},
|
|
221
221
|
};
|
|
222
222
|
|