Update styling and add new heading font

The styling of multiple components has been updated for consistency and readability. A new heading font has been added to improve visual hierarchy. Changes include updating font sizes, adding a new heading font, and adjusting borders and padding over several components.
This commit is contained in:
giancarlo
2024-04-16 14:32:22 +08:00
parent 55535e04b7
commit 26db7d9a0e
15 changed files with 86 additions and 46 deletions

View File

@@ -165,7 +165,11 @@ function PricingItem(
<div className={'flex flex-col space-y-4'}>
<div className={'flex items-center space-x-4'}>
<Heading level={5}>
<b className={'text-current-foreground font-normal uppercase'}>
<b
className={
'text-current-foreground font-heading font-normal uppercase'
}
>
<Trans
i18nKey={props.product.name}
defaults={props.product.name}
@@ -189,7 +193,7 @@ function PricingItem(
</If>
</div>
<span className={cn(`text-muted-foreground h-10 text-lg`)}>
<span className={cn(`text-muted-foreground h-10 text-base`)}>
<Trans
i18nKey={props.product.description}
defaults={props.product.description}