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'.
This commit is contained in:
giancarlo
2024-04-19 00:21:46 +08:00
parent f58d2e364f
commit 60b9942735
2 changed files with 3 additions and 6 deletions

View File

@@ -31,10 +31,7 @@ export function AuthErrorAlert({
<Trans i18nKey={`auth:errorAlertHeading`} />
</AlertTitle>
<AlertDescription
className={'text-sm font-medium'}
data-test={'auth-error-message'}
>
<AlertDescription data-test={'auth-error-message'}>
<Trans
i18nKey={`auth:errors.${errorCode}`}
defaults={'<DefaultError />'}