Add critical CSS styles for layout and typography, enhance button styles with rounded corners, and introduce a progress card component with Safrangold accent border.

This commit is contained in:
Bastian Masanek
2025-10-30 11:01:14 +01:00
parent 1f6adfb324
commit aea87ccc5f
5 changed files with 171 additions and 16 deletions

View File

@@ -9,20 +9,20 @@ export const buttonVariants = cva(
variants: {
variant: {
default: 'btn-experimenta',
destructive: 'bg-destructive text-destructive-foreground hover:bg-destructive/90 rounded-md',
outline: 'border border-input bg-background hover:bg-accent hover:text-accent-foreground rounded-md',
secondary: 'bg-secondary text-secondary-foreground hover:bg-secondary/80 rounded-md',
ghost: 'hover:bg-accent hover:text-accent-foreground rounded-md',
destructive: 'btn-destructive',
outline: 'border border-input bg-background hover:bg-accent hover:text-accent-foreground rounded-[25px]',
secondary: 'btn-secondary',
ghost: 'hover:bg-accent hover:text-accent-foreground rounded-[25px]',
link: 'text-primary underline-offset-4 hover:underline',
experimenta: 'btn-experimenta',
},
size: {
default: 'px-[30px] py-[10px] text-lg leading-[1.7em]',
sm: 'h-9 rounded-md px-3',
lg: 'h-11 rounded-md px-8',
icon: 'h-10 w-10',
'icon-sm': 'size-9',
'icon-lg': 'size-11',
sm: 'h-9 rounded-[25px] px-3',
lg: 'h-11 rounded-[25px] px-8',
icon: 'h-10 w-10 rounded-[25px]',
'icon-sm': 'size-9 rounded-[25px]',
'icon-lg': 'size-11 rounded-[25px]',
experimenta: 'px-[30px] py-[10px] text-lg leading-[1.7em]',
},
},