Fix position only on big screens
authorSuperBFG7 <daniel@despite.ch>
Thu, 17 Jun 2021 07:51:36 +0000 (09:51 +0200)
committerSuperBFG7 <daniel@despite.ch>
Thu, 17 Jun 2021 07:51:36 +0000 (09:51 +0200)
htdocs/css/mpd.css

index 21fe414..a510ecf 100644 (file)
@@ -165,7 +165,9 @@ button {
   color: black;
 }
 
-.sticky {
-  position: sticky;
-  top: 55px;
+@media screen and (min-width: 992px) {
+  .sticky {
+    position: sticky;
+    top: 55px;
+  }
 }