Fix buttons

This commit is contained in:
momo5502
2025-04-29 10:12:33 +02:00
parent 6cb571f496
commit e20916a3c4
3 changed files with 13 additions and 11 deletions

View File

@@ -34,12 +34,12 @@ button {
cursor: pointer;
}
button.fancy-primary,
button.fancy-secondary {
button.fancy.bg-primary,
button.fancy.bg-secondary {
transition: all 0.2s ease;
}
button.fancy-primary {
button.fancy.bg-primary {
background: linear-gradient(
180deg,
rgba(38, 144, 255, 1) 0%,
@@ -49,7 +49,7 @@ button.fancy-primary {
text-shadow: rgba(0, 0, 0, 0.2) 0px 1px;
}
button.fancy-primary:hover {
button.fancy.bg-primary:hover {
background: linear-gradient(
180deg,
rgba(46, 151, 255, 1) 0%,
@@ -58,12 +58,12 @@ button.fancy-primary:hover {
border: 1px solid rgb(33, 33, 34);
}
button.fancy-secondary {
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);
}
button.fancy-secondary:hover {
button.fancy.bg-secondary:hover {
background: linear-gradient(180deg, rgb(42, 42, 43) 0%, rgb(38, 38, 39) 100%);
border: 1px solid rgb(33, 33, 34);
}