diff --git a/CHANGELOG.md b/CHANGELOG.md index 75a770ec8eb4..a2a147c21ed9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -18,6 +18,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Fix crash showing completions in Intellisense when using a custom separator ([#13306](https://github.com/tailwindlabs/tailwindcss/pull/13306)) - Transpile `import.meta.url` in config files ([#13322](https://github.com/tailwindlabs/tailwindcss/pull/13322)) - Reset letter spacing for form elements ([#13150](https://github.com/tailwindlabs/tailwindcss/pull/13150)) +- Fix missing `xx-large` and remove double `x-large` absolute size ([#13324](https://github.com/tailwindlabs/tailwindcss/pull/13324)) ## [3.4.1] - 2024-01-05 diff --git a/src/util/dataTypes.js b/src/util/dataTypes.js index 5e2541e5e969..9984a055eb24 100644 --- a/src/util/dataTypes.js +++ b/src/util/dataTypes.js @@ -393,7 +393,7 @@ let absoluteSizes = new Set([ 'medium', 'large', 'x-large', - 'x-large', + 'xx-large', 'xxx-large', ]) export function absoluteSize(value) {