Merge pull request #585 from stenehall/update-topbar
Handle mobile breakpoints correctly
This commit is contained in:
commit
04a7f31fde
2 changed files with 14 additions and 2 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue