From 6ebd8f53d7c63e778333de630cfb674108c9ebc4 Mon Sep 17 00:00:00 2001 From: Jonathan Newman Date: Wed, 26 Feb 2020 09:57:28 -0600 Subject: [PATCH] media query fix --- docs/_sass/custom/custom.scss | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) diff --git a/docs/_sass/custom/custom.scss b/docs/_sass/custom/custom.scss index 8c6347b..565d41d 100644 --- a/docs/_sass/custom/custom.scss +++ b/docs/_sass/custom/custom.scss @@ -19,17 +19,10 @@ footer .text-small { } } -@media all and (max-width: 800px) { +@media screen and (max-width: 800px) { .navigation-list > .navigation-list-item:first-child { - margin-bottom: 0.5rem; - position: relative; - &:before { - content: "💡"; - position: absolute; - right: 100%; - top: 0.25rem; - margin-right: 0.25rem; + display: none; } } }