Implement PWA features: add service worker, manifest, and offline page; enhance footer and header navigation
All checks were successful
Deploy Jekyll site to Pages / build (push) Successful in 5m57s

This commit is contained in:
2025-03-18 21:51:15 +01:00
parent 20b46587ee
commit fae93a92de
13 changed files with 147 additions and 32 deletions

View File

@@ -36,3 +36,19 @@ footer {
.breadcrumb span {
color: #888;
}
.mobile-tabs {
display: none;
}
/* Ab max. 992px (iPad Hochkant und kleiner) ändert sich das Layout */
@media screen and (max-width: 992px) {
.desktop-only {
display: none;
}
.mobile-tabs {
display: block;
background-color: transparent;
}
}