Skip to content

Commit

Permalink
Fix small css layout bug in mobile
Browse files Browse the repository at this point in the history
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).
  • Loading branch information
ericat committed Dec 27, 2017
1 parent d946e32 commit aa361b8
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
2 changes: 1 addition & 1 deletion _sass/_base.sass
Original file line number Diff line number Diff line change
Expand Up @@ -554,7 +554,7 @@ section
font-weight: bold

li + li
margin-left: 20px
margin-left: 0


#docs
Expand Down
5 changes: 5 additions & 0 deletions _sass/_desktop.sass
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit aa361b8

Please sign in to comment.