Fix display of critical announcements in app (#3407)

This commit is contained in:
Prospector
2025-03-18 18:24:14 -07:00
committed by GitHub
parent d49cc87b8c
commit 16893ec0e3
2 changed files with 8 additions and 10 deletions

View File

@@ -39,14 +39,14 @@ defineProps({
})
const typeClasses = {
info: 'border-blue bg-bg-blue',
warning: 'border-orange bg-bg-orange',
info: 'border-brand-blue bg-bg-blue',
warning: 'border-brand-orange bg-bg-orange',
critical: 'border-brand-red bg-bg-red',
}
const iconClasses = {
info: 'text-blue',
warning: 'text-orange',
info: 'text-brand-blue',
warning: 'text-brand-orange',
critical: 'text-brand-red',
}