From 3faea365a96abe2b14090272d04e83a4162eb6a6 Mon Sep 17 00:00:00 2001 From: Adam Wathan Date: Sun, 12 Nov 2023 11:22:35 -0500 Subject: [PATCH] Add `appearance-auto` utility (#12404) * Add `appearance-auto` utility * Update CHANGELOG --------- Co-authored-by: Adam Wathan <4323180+adamwathan@users.noreply.github.com> --- CHANGELOG.md | 1 + src/corePlugins.js | 1 + 2 files changed, 2 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index f3d9ca8be980..a61bac7ebeae 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -20,6 +20,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Add spacing scale to `min-w-*`, `min-h-*`, and `max-w-*` utilities ([#12300](https://github.com/tailwindlabs/tailwindcss/pull/12300)) - Add `forced-color-adjust` utilities ([#11931](https://github.com/tailwindlabs/tailwindcss/pull/11931)) - Add `forced-colors` variant ([#11694](https://github.com/tailwindlabs/tailwindcss/pull/11694)) +- Add `appearance-none` utility ([#12404](https://github.com/tailwindlabs/tailwindcss/pull/12404)) ## [3.3.6] - 2023-12-04 diff --git a/src/corePlugins.js b/src/corePlugins.js index 9e7eb9b70e15..a54c709c8eda 100644 --- a/src/corePlugins.js +++ b/src/corePlugins.js @@ -1135,6 +1135,7 @@ export let corePlugins = { appearance: ({ addUtilities }) => { addUtilities({ '.appearance-none': { appearance: 'none' }, + '.appearance-auto': { appearance: 'auto' }, }) },