Small style fixes

This commit is contained in:
momo5502
2025-05-01 09:29:21 +02:00
parent 7064a1fe04
commit 9d0680352a
3 changed files with 31 additions and 4 deletions

View File

@@ -35,7 +35,8 @@ button {
}
button.fancy.bg-primary,
button.fancy.bg-secondary {
button.fancy.bg-secondary,
button.fancy.bg-destructive {
transition: all 0.2s ease;
}
@@ -58,6 +59,25 @@ button.fancy.bg-primary:hover {
border: 1px solid rgb(33, 33, 34);
}
button.fancy.bg-destructive {
background: linear-gradient(
180deg,
rgb(202, 23, 23) 0%,
rgb(176, 40, 9) 100%
);
border: 1px solid rgb(134, 30, 6);
text-shadow: rgba(0, 0, 0, 0.2) 0px 1px;
}
button.fancy.bg-destructive:hover {
background: linear-gradient(
180deg,
rgb(210, 30, 29) 0%,
rgb(184, 47, 15) 100%
);
border: 1px solid rgb(33, 33, 34);
}
button.fancy.bg-secondary {
background: linear-gradient(180deg, rgb(38, 38, 39) 0%, rgb(34, 34, 35) 100%);
border: 1px solid rgb(42, 42, 44);