Hide Discord button when in mobile

This commit is contained in:
alistair3149 2019-10-29 00:33:03 -04:00
parent f2154cde31
commit 5b87de5c14

View file

@ -50,3 +50,9 @@
.nav-up ~ #mw-bottombar {
transform: none;
}
@media only screen and (max-width: @screen0) {
#mw-bottombar {
display: none;
}
}