nav/header adjustments #21

Merged
freakoverse merged 12 commits from staging into master 2024-08-26 10:28:23 +00:00
Showing only changes of commit 9a1cc39027 - Show all commits

View File

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