CSS fixes for mobile.

This commit is contained in:
Mike Cao 2020-10-03 10:53:06 -07:00
parent 3d1dc08491
commit bba75fd67f
8 changed files with 35 additions and 11 deletions

View file

@ -4,4 +4,15 @@
align-items: center;
font-size: var(--font-size-small);
min-height: 100px;
text-align: center;
}
.version {
text-align: right;
}
@media only screen and (max-width: 768px) {
.version {
text-align: center;
}
}