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 1db5983 commit ecfdf48Copy full SHA for ecfdf48
src/plugins/tableLayout.js
@@ -1,11 +1,11 @@
1
-export default function({ variants }) {
2
- return function({ addUtilities }) {
+export default function() {
+ return function({ addUtilities, config }) {
3
addUtilities(
4
{
5
'.table-auto': { 'table-layout': 'auto' },
6
'.table-fixed': { 'table-layout': 'fixed' },
7
},
8
- variants
+ config('variants.tableLayout')
9
)
10
}
11
0 commit comments