Update src/styles/nav.module.scss
Some checks failed
Release to Staging / build_and_release (push) Failing after 21s

This commit is contained in:
freakoverse 2024-08-26 07:55:53 +00:00
parent 1e6b3d2c0b
commit 9a1cc39027

View File

@ -246,8 +246,8 @@
.NavMainBottomInside { .NavMainBottomInside {
width: 100%; width: 100%;
display: flex; display: grid;
flex-direction: row; grid-template-columns: 1fr 1fr 1fr;
grid-gap: 10px; grid-gap: 10px;
justify-content: center; justify-content: center;
align-items: center; align-items: center;
@ -272,5 +272,10 @@
color: rgba(255, 255, 255, 0.65); color: rgba(255, 255, 255, 0.65);
} }
} }
@media (max-width: 768px) {
display: flex;
justify-content: start;
}
} }
} }