mirror of
https://github.com/tailwindlabs/tailwindcss.git
synced 2025-12-08 21:36:08 +00:00
feat: add hyphens (#10071)
This commit is contained in:
parent
b17b60ef6a
commit
f58a43fd75
@ -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' },
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user