From 1f1c28baf440318a31cf044edb01cf48b044dcce Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ciar=C3=A1n=20Ainsworth?= Date: Wed, 15 Jul 2020 22:23:12 +0100 Subject: [PATCH] Fix issue with landscape tablet playbar layout --- changes/changelog.d/1144.bugfix | 1 + front/src/style/globals/_utils.scss | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) create mode 100644 changes/changelog.d/1144.bugfix diff --git a/changes/changelog.d/1144.bugfix b/changes/changelog.d/1144.bugfix new file mode 100644 index 000000000..3e96c031d --- /dev/null +++ b/changes/changelog.d/1144.bugfix @@ -0,0 +1 @@ +Fix layout issue with playbar on landscape tablets (#1144) \ No newline at end of file diff --git a/front/src/style/globals/_utils.scss b/front/src/style/globals/_utils.scss index da427f9fa..f227cb299 100644 --- a/front/src/style/globals/_utils.scss +++ b/front/src/style/globals/_utils.scss @@ -59,7 +59,7 @@ a { } } .tablet-and-below { - @include media(">desktop") { + @include media(">=desktop") { display: none !important; } }