CSS fixes.

This commit is contained in:
Mike Cao 2020-08-02 00:51:26 -07:00
parent cb7f267212
commit c5599f1e20
3 changed files with 25 additions and 3 deletions

View file

@ -1,3 +1,13 @@
.container {
display: flex;
}
@media only screen and (max-width: 1000px) {
.container {
padding-bottom: 20px;
}
.container > div:last-child {
display: none;
}
}