Handle mobile breakpoints correctly

This commit is contained in:
Johan Stenehall 2015-03-25 01:04:00 +01:00
commit 3ce93122a3
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;