fix
This commit is contained in:
parent
dfbf1c6d64
commit
6d36b0fd88
2 changed files with 12 additions and 2 deletions
|
@ -19,7 +19,7 @@
|
|||
text-align: center;
|
||||
color: white;
|
||||
text-shadow: 0 0.1em 0.5em black;
|
||||
box-shadow: 0 0 1em var(--accent-color);
|
||||
box-shadow: inset 0 0 1em var(--accent-color);
|
||||
font-size: 1.5em;
|
||||
border-radius: 2rem;
|
||||
|
||||
|
|
|
@ -93,5 +93,15 @@ html:not(.base) {
|
|||
}
|
||||
html:not(.base) body {
|
||||
backdrop-filter: blur(8px);
|
||||
--background-color: hsla(var(--base-color), 80%, 0.9);
|
||||
/* --background-color: hsla(var(--base-color), 80%, 0.9); */
|
||||
}
|
||||
|
||||
:root {
|
||||
--background-color: hsla(var(--base-color), 15%, 0.9);
|
||||
}
|
||||
|
||||
@media (prefers-color-scheme: light) {
|
||||
:root {
|
||||
--background-color: hsla(var(--base-color), 80%, 0.9);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue