From 3bce815f859f42505767d6793feee2cc35d5c6bc Mon Sep 17 00:00:00 2001 From: Allain Lalonde Date: Fri, 22 Mar 2024 14:21:20 -0400 Subject: [PATCH 1/2] fixing double x-large absolute size x-large appears twice in the set of absolute sizes. I believe the second one is meant to be 'xx-large'. --- src/util/dataTypes.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) { From 45a4fd0051de530bc7e347ba54d14b344ee316ac Mon Sep 17 00:00:00 2001 From: Robin Malfait Date: Fri, 22 Mar 2024 19:59:47 +0100 Subject: [PATCH 2/2] update changelog --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) 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