[TASK] add theme toggler in footer
All checks were successful
CI/CD Pipeline / deploy-main (push) Successful in 6m53s

This commit is contained in:
Marie Birner
2024-02-19 18:11:02 +01:00
parent ba4b54490a
commit f3919f5369
7 changed files with 179 additions and 39 deletions

View File

@@ -220,4 +220,22 @@ ol li::before {
/* Element separation */
ol li + li {
border-top: var(--pico-contrast-focus) solid 1px;
}
.hidden {
display: none;
}
.inline {
display: inline;
}
:root:not([data-theme=dark]) .dark-inline,
[data-theme=light] .dark-inline{
display: inline;
}
:root:not([data-theme=dark]) .dark-hidden,
[data-theme=light] .dark-hidden {
display: none;
}