From 86586fbcee0944e77fa32e17c5d0155e37807df3 Mon Sep 17 00:00:00 2001 From: SuperBFG7 Date: Thu, 17 Jun 2021 09:51:36 +0200 Subject: [PATCH] Fix position only on big screens --- htdocs/css/mpd.css | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/htdocs/css/mpd.css b/htdocs/css/mpd.css index 21fe414..a510ecf 100644 --- a/htdocs/css/mpd.css +++ b/htdocs/css/mpd.css @@ -165,7 +165,9 @@ button { color: black; } -.sticky { - position: sticky; - top: 55px; +@media screen and (min-width: 992px) { + .sticky { + position: sticky; + top: 55px; + } }