Mobile fixes for metrics bar.

This commit is contained in:
Mike Cao 2023-10-16 22:46:49 -07:00
parent 4c57c32950
commit 9af6e08c00
3 changed files with 64 additions and 54 deletions

View file

@ -17,7 +17,7 @@
gap: 10px;
}
@media only screen and (max-width: 1200px) {
@media screen and (max-width: 1200px) {
.container {
grid-template-columns: 1fr;
}
@ -27,7 +27,7 @@
}
}
@media only screen and (min-width: 992px) {
@media screen and (min-width: 992px) {
.sticky {
position: sticky;
top: -1px;
@ -38,3 +38,9 @@
border-bottom: 1px solid var(--base300);
}
}
@media screen and (max-width: 768px) {
.button {
display: none;
}
}