Skip to content

Commit bf1d495

Browse files
committed
Remove other default scale values
1 parent 6d5ea5e commit bf1d495

File tree

3 files changed

+18
-18
lines changed

3 files changed

+18
-18
lines changed

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

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -264,15 +264,15 @@ exports[`\`@import 'tailwindcss'\` is replaced with the generated CSS 1`] = `
264264
--animate-ping: ping 1s cubic-bezier(0, 0, .2, 1) infinite;
265265
--animate-pulse: pulse 2s cubic-bezier(.4, 0, .6, 1) infinite;
266266
--animate-bounce: bounce 1s infinite;
267-
--blur: 8px;
268-
--blur-sm: 4px;
267+
--blur-xs: 4px;
268+
--blur-sm: 8px;
269269
--blur-md: 12px;
270270
--blur-lg: 16px;
271271
--blur-xl: 24px;
272272
--blur-2xl: 40px;
273273
--blur-3xl: 64px;
274-
--radius: .25rem;
275-
--radius-sm: .125rem;
274+
--radius-xs: .125rem;
275+
--radius-sm: .25rem;
276276
--radius-md: .375rem;
277277
--radius-lg: .5rem;
278278
--radius-xl: .75rem;
@@ -290,8 +290,8 @@ exports[`\`@import 'tailwindcss'\` is replaced with the generated CSS 1`] = `
290290
--inset-shadow-2xs: inset 0 1px #0000000d;
291291
--inset-shadow-xs: inset 0 1px 1px #0000000d;
292292
--inset-shadow-sm: inset 0 2px 4px #0000000d;
293-
--drop-shadow: 0 1px 2px #0000001a, 0 1px 1px #0000000f;
294-
--drop-shadow-sm: 0 1px 1px #0000000d;
293+
--drop-shadow-xs: 0 1px 1px #0000000d;
294+
--drop-shadow-sm: 0 1px 2px #0000001a, 0 1px 1px #0000000f;
295295
--drop-shadow-md: 0 4px 3px #00000012, 0 2px 2px #0000000f;
296296
--drop-shadow-lg: 0 10px 8px #0000000a, 0 4px 3px #0000001a;
297297
--drop-shadow-xl: 0 20px 13px #00000008, 0 8px 5px #00000014;

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

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -263,15 +263,15 @@ exports[`compiling CSS > \`@tailwind utilities\` is replaced by utilities using
263263
--animate-ping: ping 1s cubic-bezier(0, 0, .2, 1) infinite;
264264
--animate-pulse: pulse 2s cubic-bezier(.4, 0, .6, 1) infinite;
265265
--animate-bounce: bounce 1s infinite;
266-
--blur: 8px;
267-
--blur-sm: 4px;
266+
--blur-xs: 4px;
267+
--blur-sm: 8px;
268268
--blur-md: 12px;
269269
--blur-lg: 16px;
270270
--blur-xl: 24px;
271271
--blur-2xl: 40px;
272272
--blur-3xl: 64px;
273-
--radius: .25rem;
274-
--radius-sm: .125rem;
273+
--radius-xs: .125rem;
274+
--radius-sm: .25rem;
275275
--radius-md: .375rem;
276276
--radius-lg: .5rem;
277277
--radius-xl: .75rem;
@@ -289,8 +289,8 @@ exports[`compiling CSS > \`@tailwind utilities\` is replaced by utilities using
289289
--inset-shadow-2xs: inset 0 1px #0000000d;
290290
--inset-shadow-xs: inset 0 1px 1px #0000000d;
291291
--inset-shadow-sm: inset 0 2px 4px #0000000d;
292-
--drop-shadow: 0 1px 2px #0000001a, 0 1px 1px #0000000f;
293-
--drop-shadow-sm: 0 1px 1px #0000000d;
292+
--drop-shadow-xs: 0 1px 1px #0000000d;
293+
--drop-shadow-sm: 0 1px 2px #0000001a, 0 1px 1px #0000000f;
294294
--drop-shadow-md: 0 4px 3px #00000012, 0 2px 2px #0000000f;
295295
--drop-shadow-lg: 0 10px 8px #0000000a, 0 4px 3px #0000001a;
296296
--drop-shadow-xl: 0 20px 13px #00000008, 0 8px 5px #00000014;

packages/tailwindcss/theme.css

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -291,17 +291,17 @@
291291
--animate-bounce: bounce 1s infinite;
292292

293293
/* Blurs */
294-
--blur: 8px;
295-
--blur-sm: 4px;
294+
--blur-xs: 4px;
295+
--blur-sm: 8px;
296296
--blur-md: 12px;
297297
--blur-lg: 16px;
298298
--blur-xl: 24px;
299299
--blur-2xl: 40px;
300300
--blur-3xl: 64px;
301301

302302
/* Radii */
303-
--radius: 0.25rem;
304-
--radius-sm: 0.125rem;
303+
--radius-xs: 0.125rem;
304+
--radius-sm: 0.25rem;
305305
--radius-md: 0.375rem;
306306
--radius-lg: 0.5rem;
307307
--radius-xl: 0.75rem;
@@ -325,8 +325,8 @@
325325
--inset-shadow-sm: inset 0 2px 4px rgb(0 0 0 / 0.05);
326326

327327
/* Drop shadows */
328-
--drop-shadow: 0 1px 2px rgb(0 0 0 / 0.1), 0 1px 1px rgb(0 0 0 / 0.06);
329-
--drop-shadow-sm: 0 1px 1px rgb(0 0 0 / 0.05);
328+
--drop-shadow-xs: 0 1px 1px rgb(0 0 0 / 0.05);
329+
--drop-shadow-sm: 0 1px 2px rgb(0 0 0 / 0.1), 0 1px 1px rgb(0 0 0 / 0.06);
330330
--drop-shadow-md: 0 4px 3px rgb(0 0 0 / 0.07), 0 2px 2px rgb(0 0 0 / 0.06);
331331
--drop-shadow-lg: 0 10px 8px rgb(0 0 0 / 0.04), 0 4px 3px rgb(0 0 0 / 0.1);
332332
--drop-shadow-xl: 0 20px 13px rgb(0 0 0 / 0.03), 0 8px 5px rgb(0 0 0 / 0.08);

0 commit comments

Comments
 (0)