Skip to content

Commit 4bdf515

Browse files
committed
Fix error box background
1 parent c9c046f commit 4bdf515

2 files changed

Lines changed: 7 additions & 2 deletions

File tree

frontend/assets/styles/themes.scss

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,8 @@
1919
--color-input-text: #e8e8e8;
2020
--color-input-text-hover: #f8f8f8;
2121
--color-input-text-active: #ffffff;
22-
--color-error-background: #d939398f;
22+
--color-error-background: #b72a3585;
23+
--color-error-background-light: #da433e8f;
2324
--color-error-glow: #ff000082;
2425
--color-error-text: #ffffff;
2526
--color-error-text-weak: #ffffffaa;

frontend/components/ErrorBox.vue

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,11 @@ const reportUrl = computed(
5656
width: 100%;
5757
padding: 1.25rem;
5858
59-
background-color: var(--color-error-background);
59+
background-image: linear-gradient(
60+
135deg,
61+
var(--color-error-background-light),
62+
var(--color-error-background)
63+
);
6064
box-shadow: 0 0 2rem var(--color-error-glow);
6165
color: var(--color-error-text);
6266
animation: 0.125s fade-in;

0 commit comments

Comments
 (0)