Skip to content

Commit

Permalink
Fix missing xx-large and remove double x-large absolute size (#13324
Browse files Browse the repository at this point in the history
)

* 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 <malfait.robin@gmail.com>
  • Loading branch information
allain and RobinMalfait committed Mar 22, 2024
1 parent ea90d3a commit a53d854
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion src/util/dataTypes.js
Original file line number Diff line number Diff line change
Expand Up @@ -393,7 +393,7 @@ let absoluteSizes = new Set([
'medium',
'large',
'x-large',
'x-large',
'xx-large',
'xxx-large',
])
export function absoluteSize(value) {
Expand Down

0 comments on commit a53d854

Please sign in to comment.