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 f323a54 commit 3494cf5Copy full SHA for 3494cf5
src/plugins/overflow.js
@@ -1,5 +1,5 @@
1
-export default function({ variants }) {
2
- return function({ addUtilities }) {
+export default function() {
+ return function({ addUtilities, config }) {
3
addUtilities(
4
{
5
'.overflow-auto': { overflow: 'auto' },
@@ -17,7 +17,7 @@ export default function({ variants }) {
17
'.scrolling-touch': { '-webkit-overflow-scrolling': 'touch' },
18
'.scrolling-auto': { '-webkit-overflow-scrolling': 'auto' },
19
},
20
- variants
+ config('variants.overflow')
21
)
22
}
23
0 commit comments