Skip to content

Commit adfcccf

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 add51c6 commit adfcccf

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
@@ -20,6 +20,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2020
- Add spacing scale to `min-w-*`, `min-h-*`, and `max-w-*` utilities ([#12300](https://github.com/tailwindlabs/tailwindcss/pull/12300))
2121
- Add `forced-color-adjust` utilities ([#11931](https://github.com/tailwindlabs/tailwindcss/pull/11931))
2222
- Add `forced-colors` variant ([#11694](https://github.com/tailwindlabs/tailwindcss/pull/11694))
23+
- Add `appearance-none` utility ([#12404](https://github.com/tailwindlabs/tailwindcss/pull/12404))
2324

2425
## [3.3.7] - 2023-12-18
2526

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)