From d3b6d86e746e157d65d87e5f2650671e74d57624 Mon Sep 17 00:00:00 2001 From: psychedelicious <4822129+psychedelicious@users.noreply.github.com> Date: Thu, 4 Jan 2024 18:05:59 +1100 Subject: [PATCH] feat(ui): tweak badge styles --- invokeai/frontend/web/src/common/components/InvBadge/theme.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/invokeai/frontend/web/src/common/components/InvBadge/theme.ts b/invokeai/frontend/web/src/common/components/InvBadge/theme.ts index 15dc15081a..bca68c3198 100644 --- a/invokeai/frontend/web/src/common/components/InvBadge/theme.ts +++ b/invokeai/frontend/web/src/common/components/InvBadge/theme.ts @@ -1,7 +1,7 @@ import { defineStyle, defineStyleConfig } from '@chakra-ui/react'; const baseStyle = defineStyle((props) => ({ - fontSize: 10, + fontSize: 9, px: 2, py: 1, minW: 4, @@ -10,7 +10,7 @@ const baseStyle = defineStyle((props) => ({ bg: `${props.colorScheme}.200`, color: 'base.900', fontWeight: 'bold', - letterSpacing: 0.5, + letterSpacing: 0.6, wordBreak: 'break-all', whiteSpace: 'nowrap', textOverflow: 'ellipsis',