Temporary fix for #43

This commit is contained in:
daudix
2024-08-15 00:11:16 +03:00
parent 77b8545aa7
commit 0b180de74f
5 changed files with 13 additions and 5 deletions

View File

@ -37,7 +37,7 @@
&:hover {
box-shadow: var(--edge-highlight);
background-color: var(--primary-color);
color: var(--fg-color);
color: var(--contrast-color);
text-decoration: none;
}

View File

@ -36,7 +36,7 @@ body {
// Style text selection to use primary color
::selection {
background-color: var(--primary-color);
color: var(--fg-color);
color: var(--contrast-color);
}
// Make focused anchor not get covered by nav,
@ -77,6 +77,7 @@ body {
}
@media (prefers-reduced-motion) {
*,
*::before,
*::after {

View File

@ -16,7 +16,7 @@ input[type="color"] {
transform: scale(0.5);
opacity: 0;
transition: var(--transition);
background-color: white;
background-color: var(--contrast-color);
content: "";
}
@ -131,7 +131,7 @@ input[type="range"] {
cursor: pointer;
box-shadow: var(--shadow);
border-radius: 999px;
background: white;
background-color: white;
width: 1.5rem;
height: 1.5rem;
}
@ -143,7 +143,7 @@ input[type="range"] {
box-shadow: var(--shadow);
border: none;
border-radius: 999px;
background: white;
background-color: white;
width: 1.5rem;
height: 1.5rem;
}