Skip to content

Commit f58a43f

Browse files
authored
feat: add hyphens (#10071)
1 parent b17b60e commit f58a43f

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

src/corePlugins.js

+8
Original file line numberDiff line numberDiff line change
@@ -1466,6 +1466,14 @@ export let corePlugins = {
14661466
})
14671467
},
14681468

1469+
hyphens: ({ addUtilities }) => {
1470+
addUtilities({
1471+
'.hyphens-none': { hyphens: 'none' },
1472+
'.hyphens-manual': { hyphens: 'manual' },
1473+
'.hyphens-auto': { hyphens: 'auto' },
1474+
})
1475+
},
1476+
14691477
whitespace: ({ addUtilities }) => {
14701478
addUtilities({
14711479
'.whitespace-normal': { 'white-space': 'normal' },

0 commit comments

Comments
 (0)