From 60b99427357a895fa2b78053abe4171984463873 Mon Sep 17 00:00:00 2001 From: giancarlo Date: Fri, 19 Apr 2024 00:21:46 +0800 Subject: [PATCH] Update font styles in Alert components The commit includes changes in several font styles in the Alert components. This involves changing the font weight from 'font-semibold' to 'font-bold' and adding 'font-normal' in 'alert.tsx'. Additionally, 'font-medium' has been removed from 'auth-error-alert.tsx'. --- packages/features/auth/src/components/auth-error-alert.tsx | 5 +---- packages/ui/src/shadcn/alert.tsx | 4 ++-- 2 files changed, 3 insertions(+), 6 deletions(-) diff --git a/packages/features/auth/src/components/auth-error-alert.tsx b/packages/features/auth/src/components/auth-error-alert.tsx index 6628d28af..7da96e56c 100644 --- a/packages/features/auth/src/components/auth-error-alert.tsx +++ b/packages/features/auth/src/components/auth-error-alert.tsx @@ -31,10 +31,7 @@ export function AuthErrorAlert({ - + '} diff --git a/packages/ui/src/shadcn/alert.tsx b/packages/ui/src/shadcn/alert.tsx index 5bd488905..5ab680f25 100644 --- a/packages/ui/src/shadcn/alert.tsx +++ b/packages/ui/src/shadcn/alert.tsx @@ -44,7 +44,7 @@ const AlertTitle = React.forwardRef< >(({ className, ...props }, ref) => (
)); @@ -56,7 +56,7 @@ const AlertDescription = React.forwardRef< >(({ className, ...props }, ref) => (
));