chore: Fix Calendar h2 in dark mode
This commit is contained in:
parent
2ffb8b0d81
commit
7f83b67a28
|
|
@ -127,4 +127,16 @@ onMounted(() => {
|
|||
.padding {
|
||||
padding: 1rem;
|
||||
}
|
||||
|
||||
@media (prefers-color-scheme: dark) {
|
||||
:deep(div.calendar-header-nav) {
|
||||
background-color: var(--bg, #111);
|
||||
color: var(--text-color, #fff);
|
||||
border-color: var(--border-color, #333);
|
||||
}
|
||||
|
||||
:deep(div.calendar-header-nav h2.calendar-title) {
|
||||
color: #fff !important;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
|
|
|
|||
Loading…
Reference in New Issue