2023-06-06 19:48:37 -07:00
|
|
|
.darkmode {
|
2024-08-24 16:33:30 -04:00
|
|
|
cursor: pointer;
|
|
|
|
padding: 0;
|
2023-06-06 19:48:37 -07:00
|
|
|
position: relative;
|
2024-08-24 16:33:30 -04:00
|
|
|
background: none;
|
|
|
|
border: none;
|
2023-06-18 10:47:07 -07:00
|
|
|
width: 20px;
|
|
|
|
height: 20px;
|
2025-04-17 19:45:17 -07:00
|
|
|
margin: 0;
|
2024-08-24 16:33:30 -04:00
|
|
|
text-align: inherit;
|
2025-03-09 14:58:26 -07:00
|
|
|
flex-shrink: 0;
|
2023-06-06 19:48:37 -07:00
|
|
|
|
|
|
|
& svg {
|
|
|
|
position: absolute;
|
|
|
|
width: 20px;
|
|
|
|
height: 20px;
|
|
|
|
top: calc(50% - 10px);
|
|
|
|
fill: var(--darkgray);
|
|
|
|
transition: opacity 0.1s ease;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-09-17 19:29:20 +02:00
|
|
|
:root[saved-theme="dark"] {
|
|
|
|
color-scheme: dark;
|
|
|
|
}
|
|
|
|
|
|
|
|
:root[saved-theme="light"] {
|
|
|
|
color-scheme: light;
|
|
|
|
}
|
|
|
|
|
2024-08-24 16:33:30 -04:00
|
|
|
:root[saved-theme="dark"] .darkmode {
|
2025-03-10 11:44:47 -07:00
|
|
|
& > .dayIcon {
|
2024-08-24 16:33:30 -04:00
|
|
|
display: none;
|
2023-06-06 19:48:37 -07:00
|
|
|
}
|
2025-03-10 11:44:47 -07:00
|
|
|
& > .nightIcon {
|
2024-08-24 16:33:30 -04:00
|
|
|
display: inline;
|
2023-06-06 19:48:37 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-08-24 16:33:30 -04:00
|
|
|
:root .darkmode {
|
2025-03-10 11:44:47 -07:00
|
|
|
& > .dayIcon {
|
2024-08-24 16:33:30 -04:00
|
|
|
display: inline;
|
2023-06-06 19:48:37 -07:00
|
|
|
}
|
2025-03-10 11:44:47 -07:00
|
|
|
& > .nightIcon {
|
2024-08-24 16:33:30 -04:00
|
|
|
display: none;
|
2023-06-06 19:48:37 -07:00
|
|
|
}
|
|
|
|
}
|