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 7743f30faa - Show all commits

View File

@ -245,47 +245,40 @@
} }
.NavMainBottomInside { .NavMainBottomInside {
width: 100%; width: 100%;
display: grid; display: grid;
grid-template-columns: 1fr 1fr 1fr; grid-template-columns: 1fr 1fr 1fr;
grid-gap: 10px; grid-gap: 10px;
justify-content: center; justify-content: center;
align-items: center; align-items: center;
padding: 10px; padding: 10px;
white-space: nowrap; white-space: nowrap;
overflow-x: auto; overflow-x: auto;
.NavMainBottomInsideLinks { .NavMainBottomInsideLink {
display: flex; transition: ease 0.4s;
flex-direction: row; text-decoration: unset;
grid-gap: 10px; color: rgba(255, 255, 255, 0.5);
justify-content: center; font-weight: bold;
align-items: center; padding: 5px 15px;
.NavMainBottomInsideLink {
transition: ease 0.4s;
text-decoration: unset;
color: rgba(255, 255, 255, 0.5);
font-weight: bold;
padding: 5px 15px;
&:hover { &:hover {
transition: ease 0.4s; transition: ease 0.4s;
color: rgba(255, 255, 255, 0.85); color: rgba(255, 255, 255, 0.85);
text-decoration: unset; text-decoration: unset;
}
&.NMBILActive {
color: rgba(255, 255, 255, 0.65);
}
}
@media (max-width: 768px) {
display: flex;
justify-content: start;
}
} }
&.NMBILActive {
color: rgba(255, 255, 255, 0.65);
}
}
@media (max-width: 768px) {
display: flex;
justify-content: start;
}
}
.NavMainBottomInsideOther { .NavMainBottomInsideOther {
display: flex; display: flex;
lex-direction: row; lex-direction: row;
@ -325,6 +318,5 @@
.NavMainBottomInsideOtherRight { .NavMainBottomInsideOtherRight {
} }
}
} }
} }