Merge pull request #585 from stenehall/update-topbar

Handle mobile breakpoints correctly
This commit is contained in:
Lorenz Hübschle-Schneider 2015-03-29 16:37:41 +02:00
commit 04a7f31fde
2 changed files with 14 additions and 2 deletions

View file

@ -7,6 +7,10 @@ body {
overflow: hidden;
}
.mobile {
display: none;
}
a {
cursor: pointer;
}
@ -599,6 +603,14 @@ img.emojione {
/* */
@media (max-width: 968px) {
.mobile {
display: inherit;
}
.desktop {
display: none;
}
#bufferlines table {
border-collapse: separate;
border-spacing: 2px 3px;