Skip to content

Commit

Permalink
feat: add hyphens (#10071)
Browse files Browse the repository at this point in the history
  • Loading branch information
fratzinger committed Feb 7, 2023
1 parent b17b60e commit f58a43f
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/corePlugins.js
Original file line number Diff line number Diff line change
Expand Up @@ -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' },
Expand Down

0 comments on commit f58a43f

Please sign in to comment.