Small adjustments

This commit is contained in:
Yan Lin 2025-05-16 22:20:19 +02:00
parent 01a9b1ac4d
commit 53c60f9add
11 changed files with 77 additions and 26 deletions

18
dist/index.css vendored
View file

@ -244,4 +244,22 @@ footer {
padding: 1rem 0;
width: 100%;
flex-shrink: 0;
}
.dark-mode-text {
display: none;
}
.light-mode-text {
display: inline;
}
@media (prefers-color-scheme: dark) {
.dark-mode-text {
display: inline;
}
.light-mode-text {
display: none;
}
}