Remove redundant styles

This commit is contained in:
Robin
2026-06-23 09:42:57 +02:00
parent be5d8140c9
commit a4b4a6b655

View File

@@ -167,19 +167,9 @@ body[data-platform="ios"] {
/* Hide everything but the subtitle in small windows */ /* Hide everything but the subtitle in small windows */
@media (max-height: 450px) { @media (max-height: 450px) {
.bar { .bar:has(.subtitle) > header {
display: none; grid-template-rows: var(--cpd-space-4x) minmax(var(--cpd-space-5x), auto);
} grid-template-areas: "." "subtitle";
.bar:has(.subtitle) {
display: initial;
> header {
grid-template-rows: var(--cpd-space-4x) minmax(
var(--cpd-space-5x),
auto
);
grid-template-areas: "." "subtitle";
}
} }
.subtitle { .subtitle {