disable dark mode temp

This commit is contained in:
2023-04-22 21:21:25 +10:00
parent a663e2bd56
commit e8a597ec6b
5 changed files with 56 additions and 56 deletions

View File

@@ -166,13 +166,13 @@ const tabs = () => {
}
}
@media (prefers-color-scheme: dark) {
.masthead {
background-color: var(--primary-color-light);
// @media (prefers-color-scheme: dark) {
// .masthead {
// background-color: var(--primary-color-light);
.tabs .tab-item.active {
color: var(--primary-color-light);
}
}
}
// .tabs .tab-item.active {
// color: var(--primary-color-light);
// }
// }
// }
</style>

View File

@@ -276,11 +276,11 @@ onUnmounted(() => {
}
}
@media (prefers-color-scheme: dark) {
.navbar #nav-head #nav-toggle {
filter: invert(100%) saturate(0%) brightness(120%);
}
}
// @media (prefers-color-scheme: dark) {
// .navbar #nav-head #nav-toggle {
// filter: invert(100%) saturate(0%) brightness(120%);
// }
// }
@media screen and (max-width: 650px) {
.nav-right {

View File

@@ -192,9 +192,9 @@ if (props.modelValue < 1) {
}
}
@media (prefers-color-scheme: dark) {
.pagination .item.active {
background-color: var(--primary-color-light);
}
}
// @media (prefers-color-scheme: dark) {
// .pagination .item.active {
// background-color: var(--primary-color-light);
// }
// }
</style>