Make donation button background color more dark in dark mode

This commit is contained in:
Wolfgang Huß 2024-06-10 15:49:10 +02:00
parent aee8d8215f
commit 884247ab73

View File

@ -95,10 +95,14 @@ h1, h2, h3, h4 {
}
.theme-hope-content Button.donate-button {
background-color: $theme-color !important;
background-color: $theme-color;
opacity: 0.85 !important;
border: 0 !important;
color: white !important;
html[data-theme="dark"] & {
background-color: rgba($theme-color, 0.75) !important;
}
};
.theme-hope-content Button.donate-button:hover {