Skip to content

Commit

Permalink
Prevent header from cutting off bottom of accordion (PokemonGoF#873)
Browse files Browse the repository at this point in the history
height: 100% doesn't take into account the #header height of 3.5em
  • Loading branch information
Studio-XP authored and invisiblek committed Aug 22, 2016
1 parent dc2e5ea commit fdcdfe7
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion static/sass/layout/_nav.scss
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,9 @@
background: #F8F8F8;
box-shadow: none;
color: _palette(accent2, fg-bold);
height: 100%;
height: -webkit-calc(100% - 3.5em);
height: -moz-calc(100% - 3.5em);
height: calc(100% - 3.5em);
max-width: 80%;
overflow-y: auto;
position: fixed;
Expand Down

0 comments on commit fdcdfe7

Please sign in to comment.