From f58a43fd75e8344b4c2cd0d34fa7b563b1f3ef3a Mon Sep 17 00:00:00 2001 From: fratzinger <22286818+fratzinger@users.noreply.github.com> Date: Tue, 7 Feb 2023 03:47:36 +0100 Subject: [PATCH] feat: add hyphens (#10071) --- src/corePlugins.js | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/corePlugins.js b/src/corePlugins.js index 436f008aa78a..570699cdf9af 100644 --- a/src/corePlugins.js +++ b/src/corePlugins.js @@ -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' },