From aa361b80e732449063e7a9a7c4f120363360aafe Mon Sep 17 00:00:00 2001 From: Ericat Date: Sun, 17 Dec 2017 18:32:52 +0000 Subject: [PATCH] Fix small css layout bug in mobile Too much left margin on the #vendorStrip's list items was causing a small layout bug where the right hamburger menu was accidentally hidden (mobile). --- _sass/_base.sass | 2 +- _sass/_desktop.sass | 5 +++++ 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/_sass/_base.sass b/_sass/_base.sass index cb6ec8b04f..84aa40d406 100644 --- a/_sass/_base.sass +++ b/_sass/_base.sass @@ -554,7 +554,7 @@ section font-weight: bold li + li - margin-left: 20px + margin-left: 0 #docs diff --git a/_sass/_desktop.sass b/_sass/_desktop.sass index 48a83596e3..0043838d9d 100644 --- a/_sass/_desktop.sass +++ b/_sass/_desktop.sass @@ -316,3 +316,8 @@ $video-section-height: 550px @media screen and (min-width: 1300px) #vendorStrip padding-right: 100px + +@media screen and (min-width: 456px) + #vendorStrip + li + li + margin-left: 20px