Skip to content

Commit 05965b7

Browse files
adamwathanthecrypticace
authored andcommitted
Add appearance-auto utility (#12404)
* Add `appearance-auto` utility * Update CHANGELOG --------- Co-authored-by: Adam Wathan <[email protected]>
1 parent 02fb5df commit 05965b7

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2424
- Add spacing scale to `min-w-*`, `min-h-*`, and `max-w-*` utilities ([#12300](https://github.com/tailwindlabs/tailwindcss/pull/12300))
2525
- Add `forced-color-adjust` utilities ([#11931](https://github.com/tailwindlabs/tailwindcss/pull/11931))
2626
- Add `forced-colors` variant ([#11694](https://github.com/tailwindlabs/tailwindcss/pull/11694))
27+
- Add `appearance-none` utility ([#12404](https://github.com/tailwindlabs/tailwindcss/pull/12404))
2728

2829
## [3.3.6] - 2023-12-04
2930

src/corePlugins.js

+1
Original file line numberDiff line numberDiff line change
@@ -1135,6 +1135,7 @@ export let corePlugins = {
11351135
appearance: ({ addUtilities }) => {
11361136
addUtilities({
11371137
'.appearance-none': { appearance: 'none' },
1138+
'.appearance-auto': { appearance: 'auto' },
11381139
})
11391140
},
11401141

0 commit comments

Comments
 (0)