feat: add hyphens (#10071)

This commit is contained in:
fratzinger 2023-02-07 03:47:36 +01:00 committed by GitHub
parent b17b60ef6a
commit f58a43fd75
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1466,6 +1466,14 @@ export let corePlugins = {
})
},
hyphens: ({ addUtilities }) => {
addUtilities({
'.hyphens-none': { hyphens: 'none' },
'.hyphens-manual': { hyphens: 'manual' },
'.hyphens-auto': { hyphens: 'auto' },
})
},
whitespace: ({ addUtilities }) => {
addUtilities({
'.whitespace-normal': { 'white-space': 'normal' },