diff --git a/src/frontend/panda.config.ts b/src/frontend/panda.config.ts index c62eb20a..41ba16a9 100644 --- a/src/frontend/panda.config.ts +++ b/src/frontend/panda.config.ts @@ -166,7 +166,7 @@ const config: Config = { colors: { default: { text: { value: '{colors.gray.900}' }, - bg: { value: '{colors.slate.50}' }, + bg: { value: 'white' }, subtle: { value: '{colors.gray.100}' }, 'subtle-text': { value: '{colors.gray.600}' }, }, diff --git a/src/frontend/src/primitives/Box.tsx b/src/frontend/src/primitives/Box.tsx index 7c06f1f7..46c15f8f 100644 --- a/src/frontend/src/primitives/Box.tsx +++ b/src/frontend/src/primitives/Box.tsx @@ -16,6 +16,8 @@ const box = cva({ width: '38rem', maxWidth: '100%', textAlign: 'center', + borderColor: 'transparent', + paddingY: 0, }, popover: { padding: 'boxPadding.xs',