Compare commits

..

2 Commits

Author SHA1 Message Date
Samira 6379aebc5b Added clarifying comment
Deploy to Unraid Share / copy-file (push) Successful in 11s
2026-04-28 14:40:04 +02:00
Samira 3aa9620bf1 Fixed push applying on smaller screens instead of the other way around 2026-04-28 14:39:00 +02:00
+7 -2
View File
@@ -15,6 +15,7 @@
/* ============================== */
/* Global
/* ============================== */
/* Enable rem to match media queries */
html {
font-size: unset !important;
}
@@ -28,14 +29,18 @@ body {
.skinHeader {
--background-width: 100rem;
}
}
@media (min-width: 100em) {
/* Set graphic to width of screen */
.skinHeader {
--background-width: 100%;
}
/* Push content down from under graphic */
div.skinBody > div.page {
padding-top: 15rem !important;
}
}
.skinHeader {
/* Set graphic to width of screen */
--background-width: 100%;
/* Position graphic behind header */
margin-top: calc(-1 * (0.2202 * var(--background-width)));
height: 100%;