diff --git a/apps/app-frontend/src/App.vue b/apps/app-frontend/src/App.vue index 412ce1d3a..00c82c0cf 100644 --- a/apps/app-frontend/src/App.vue +++ b/apps/app-frontend/src/App.vue @@ -521,6 +521,10 @@ function handleAuxClick(e) { width: 'calc(100% - var(--right-bar-width))', }" > +
+

{{ criticalErrorMessage.header }}

+
+
-
-
-

{{ criticalErrorMessage.header }}

-
-
-
diff --git a/packages/ui/src/components/base/Admonition.vue b/packages/ui/src/components/base/Admonition.vue index fc9f691f6..538bb9d84 100644 --- a/packages/ui/src/components/base/Admonition.vue +++ b/packages/ui/src/components/base/Admonition.vue @@ -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', }