From: SuperBFG7 Date: Thu, 17 Jun 2021 07:51:36 +0000 (+0200) Subject: Fix position only on big screens X-Git-Url: http://gitweb.hugovil.com/?a=commitdiff_plain;h=86586fbcee0944e77fa32e17c5d0155e37807df3;p=ympd.git Fix position only on big screens --- 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; + } }