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 b17b60e commit f58a43fCopy full SHA for f58a43f
src/corePlugins.js
@@ -1466,6 +1466,14 @@ export let corePlugins = {
1466
})
1467
},
1468
1469
+ hyphens: ({ addUtilities }) => {
1470
+ addUtilities({
1471
+ '.hyphens-none': { hyphens: 'none' },
1472
+ '.hyphens-manual': { hyphens: 'manual' },
1473
+ '.hyphens-auto': { hyphens: 'auto' },
1474
+ })
1475
+ },
1476
+
1477
whitespace: ({ addUtilities }) => {
1478
addUtilities({
1479
'.whitespace-normal': { 'white-space': 'normal' },
0 commit comments