Skip to content

Commit a53d854

Browse files
allainRobinMalfait
andauthored
Fix missing xx-large and remove double x-large absolute size (#13324)
* 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'. * update changelog --------- Co-authored-by: Robin Malfait <[email protected]>
1 parent ea90d3a commit a53d854

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1818
- Fix crash showing completions in Intellisense when using a custom separator ([#13306](https://github.com/tailwindlabs/tailwindcss/pull/13306))
1919
- Transpile `import.meta.url` in config files ([#13322](https://github.com/tailwindlabs/tailwindcss/pull/13322))
2020
- Reset letter spacing for form elements ([#13150](https://github.com/tailwindlabs/tailwindcss/pull/13150))
21+
- Fix missing `xx-large` and remove double `x-large` absolute size ([#13324](https://github.com/tailwindlabs/tailwindcss/pull/13324))
2122

2223
## [3.4.1] - 2024-01-05
2324

src/util/dataTypes.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -393,7 +393,7 @@ let absoluteSizes = new Set([
393393
'medium',
394394
'large',
395395
'x-large',
396-
'x-large',
396+
'xx-large',
397397
'xxx-large',
398398
])
399399
export function absoluteSize(value) {

0 commit comments

Comments
 (0)