Fix light mobile styling

This commit is contained in:
2025-09-06 11:04:29 +02:00
parent 9ea041d332
commit f1b773ff52

View File

@@ -417,12 +417,12 @@ table {
// Softer dark background for mobile // Softer dark background for mobile
@media all and ($mobile) @media all and ($mobile)
{ {
.page > #quartz-body .sidebar.left:has(.explorer) :root[saved-theme="dark"] .page > #quartz-body .sidebar.left:has(.explorer)
{ {
background-color: unset; background-color: color-mix(in srgb, var(--lightgray)60%, var(--light));
} }
.explorer:not(.collapsed)>.explorer-content { :root[saved-theme="dark"] .explorer:not(.collapsed)>.explorer-content {
background-color: color-mix(in srgb, var(--lightgray)60%, var(--light)); background-color: color-mix(in srgb, var(--lightgray)60%, var(--light));
} }
} }