Fix menu overlap issue

The button for the conversation menu was rendering on top of the global
menu since the global menu was part of a position-fixed element and thus
except from the normal document flow.

// FREEBIE
This commit is contained in:
lilia 2016-02-22 11:01:47 -08:00
parent 34d50f94a9
commit de745c3ba0
2 changed files with 2 additions and 4 deletions

View file

@ -29,9 +29,8 @@ body {
}
#header {
position: fixed;
width: 100%;
height: $header-height;
height: 0;
line-height: 24px;
color: #f2f2f2;

View file

@ -38,9 +38,8 @@ body {
display: none; }
#header {
position: fixed;
width: 100%;
height: 36px;
height: 0;
line-height: 24px;
color: #f2f2f2; }
#header button {