This repository has been archived on 2026-03-27. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
web/components/Navigation/Navigation.module.scss

52 lines
750 B
SCSS

.nav {
display: flex;
background-color: var(--black1);
min-height: 4rem;
}
.link {
display: flex;
flex-direction: column;
justify-content: center;
color: inherit;
text-decoration: none;
padding: 0 2rem;
height: auto;
user-select: none;
&:hover {
background: var(--backdrop);
color: var(--color);
}
}
.profile {
margin-left: auto;
background: var(--color);
color: var(--backdrop);
}
.logo {
padding: 0 1rem;
transition-duration: 100ms;
user-select: none;
&:hover {
background: var(--backdrop);
cursor: pointer;
}
&:active {
transform: scale(1.1);
}
}
.mobile {
display: none;
}
@media screen and (max-width: 800px) {
.nav {
min-height: 3rem;
}
.desktop {
display: none;
}
.mobile {
display: inherit;
}
}