Skip to content

Commit cfe48ca

Browse files
committed
Revert "feat: add hyphens (#10071)"
This reverts commit f58a43f.
1 parent 6740372 commit cfe48ca

File tree

2 files changed

+0
-9
lines changed

2 files changed

+0
-9
lines changed

CHANGELOG.md

-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1414
- Add standalone CLI build for 64-bit Windows on ARM (`node16-win-arm64`) ([#10001](https://github.com/tailwindlabs/tailwindcss/pull/10001))
1515
- Add `delay-0` and `duration-0` by default ([#10294](https://github.com/tailwindlabs/tailwindcss/pull/10294))
1616
- Add logical properties support for inline direction ([#10166](https://github.com/tailwindlabs/tailwindcss/pull/10166))
17-
- Add `hyphens` utilities ([#10071](https://github.com/tailwindlabs/tailwindcss/pull/10071))
1817
- [Oxide] Use `lightningcss` for nesting and vendor prefixes in PostCSS plugin ([#10399](https://github.com/tailwindlabs/tailwindcss/pull/10399))
1918

2019
### Fixed

src/corePlugins.js

-8
Original file line numberDiff line numberDiff line change
@@ -1466,14 +1466,6 @@ 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-
14771469
whitespace: ({ addUtilities }) => {
14781470
addUtilities({
14791471
'.whitespace-normal': { 'white-space': 'normal' },

0 commit comments

Comments
 (0)