Skip to content

Commit 5f2d654

Browse files
authored
Add rounded-4xl utility (tailwindlabs#13827)
* add `rounded-4xl` * update tests to reflect change * update changelog
1 parent c711903 commit 5f2d654

File tree

4 files changed

+6
-1
lines changed

4 files changed

+6
-1
lines changed

CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10-
- Nothing yet!
10+
### Added
11+
12+
- Add `rounded-4xl` utility ([#13827](https://github.com/tailwindlabs/tailwindcss/pull/13827))
1113

1214
## [4.0.0-alpha.16] - 2024-06-07
1315

packages/@tailwindcss-postcss/src/__snapshots__/index.test.ts.snap

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -278,6 +278,7 @@ exports[`\`@import 'tailwindcss'\` is replaced with the generated CSS 1`] = `
278278
--radius-xl: .75rem;
279279
--radius-2xl: 1rem;
280280
--radius-3xl: 1.5rem;
281+
--radius-4xl: 2rem;
281282
--shadow: 0 1px 3px 0 #0000001a, 0 1px 2px -1px #0000001a;
282283
--shadow-xs: 0 1px #0000000d;
283284
--shadow-sm: 0 1px 2px 0 #0000000d;

packages/tailwindcss/src/__snapshots__/index.test.ts.snap

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -277,6 +277,7 @@ exports[`compiling CSS > \`@tailwind utilities\` is replaced by utilities using
277277
--radius-xl: .75rem;
278278
--radius-2xl: 1rem;
279279
--radius-3xl: 1.5rem;
280+
--radius-4xl: 2rem;
280281
--shadow: 0 1px 3px 0 #0000001a, 0 1px 2px -1px #0000001a;
281282
--shadow-xs: 0 1px #0000000d;
282283
--shadow-sm: 0 1px 2px 0 #0000000d;

packages/tailwindcss/theme.css

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -285,6 +285,7 @@
285285
--radius-xl: 0.75rem;
286286
--radius-2xl: 1rem;
287287
--radius-3xl: 1.5rem;
288+
--radius-4xl: 2rem;
288289

289290
/* Shadows */
290291
--shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);

0 commit comments

Comments
 (0)