Make Nav disappear on mobile

This commit is contained in:
William Tran 2021-05-30 20:25:53 -04:00
parent d7257c7223
commit c9a8cc09b2
1 changed files with 7 additions and 1 deletions

View File

@ -91,3 +91,9 @@
cursor: pointer;
display: flex;
}
@media only screen and (max-width: calc(768rem / 16)) {
.nav {
display: none;
}
}