fix: hide popover on mobile to prevent overflow

This commit is contained in:
Jacky Zhao 2022-03-04 23:55:07 -08:00
parent 5234fae080
commit 907270992d
1 changed files with 4 additions and 0 deletions

View File

@ -484,6 +484,10 @@ header {
transition-delay: 0.3s;
user-select: none;
@media all and (max-width: 600px) {
display: none;
}
&.visible {
opacity: 1;
visibility: visible;