Hide brand logo text on hella small width viewport

This commit is contained in:
Jeremy Zhang
2017-09-30 20:44:44 +00:00
parent efcbc01ee8
commit fc8768d389
2 changed files with 7 additions and 1 deletions

View File

@ -351,6 +351,12 @@ a {
filter: brightness(0) invert(1);
}
@media screen and (max-width: 280px) {
.brand-logo-text {
display: none;
}
}
.align-top {
vertical-align: top;
}