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).
This commit is contained in:
Ericat 2017-12-17 18:32:52 +00:00
parent d946e32cb7
commit aa361b80e7
2 changed files with 6 additions and 1 deletions

View File

@ -554,7 +554,7 @@ section
font-weight: bold
li + li
margin-left: 20px
margin-left: 0
#docs

View File

@ -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