We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 64ac57f commit 0c633b8Copy full SHA for 0c633b8
src/plugins/textTransform.js
@@ -1,13 +1,13 @@
1
-export default function({ variants }) {
2
- return function({ addUtilities }) {
+export default function() {
+ return function({ addUtilities, config }) {
3
addUtilities(
4
{
5
'.uppercase': { 'text-transform': 'uppercase' },
6
'.lowercase': { 'text-transform': 'lowercase' },
7
'.capitalize': { 'text-transform': 'capitalize' },
8
'.normal-case': { 'text-transform': 'none' },
9
},
10
- variants
+ config('variants.textTransform')
11
)
12
}
13
0 commit comments