From 5ce60f775dfb74b4b1f10728cb8704b493c80417 Mon Sep 17 00:00:00 2001 From: Benjamin Canac Date: Fri, 27 Oct 2023 16:17:04 +0200 Subject: [PATCH] chore(progress): improve sizes --- src/runtime/ui.config.ts | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/runtime/ui.config.ts b/src/runtime/ui.config.ts index b5edf675..401017e3 100644 --- a/src/runtime/ui.config.ts +++ b/src/runtime/ui.config.ts @@ -408,12 +408,13 @@ export const progress = { base: 'block appearance-none border-none overflow-hidden', width: 'w-full [&::-webkit-progress-bar]:w-full', size: { - xs: 'h-px', + '2xs': 'h-px', + xs: 'h-0.5', sm: 'h-1', md: 'h-2', lg: 'h-3', xl: 'h-4', - '2xl': 'h-6' + '2xl': 'h-5' }, rounded: 'rounded-full [&::-webkit-progress-bar]:rounded-full', track: '[&::-webkit-progress-bar]:bg-gray-200 [&::-webkit-progress-bar]:dark:bg-gray-700 [@supports(selector(&::-moz-progress-bar))]:bg-gray-200 [@supports(selector(&::-moz-progress-bar))]:dark:bg-gray-700',