Merge pull request #280 from tomalrussell/feature/hide_theme_switch_button_on_mobile

Implementation for: Hide or shrink theme switch button on mobile #273
This commit is contained in:
Tom Russell 2019-05-27 15:32:51 +01:00 committed by GitHub
commit 0e01863879
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -21,3 +21,9 @@
background-image: none;
border-color: #343a40;
}
@media (max-width: 768px){
.theme-switcher {
visibility: hidden;
}
}