1
mirror of https://github.com/jakejarvis/jarv.is.git synced 2025-04-27 17:30:28 -04:00
jarv.is/components/page-header/Menu.module.scss
2021-12-30 08:18:41 -05:00

39 lines
472 B
SCSS

.menu {
list-style: none;
display: flex;
align-items: center;
margin: 0;
padding: 0;
}
.item {
margin-left: 1.8em;
display: inline-flex;
align-items: center;
line-height: 1;
svg {
width: 1.6em;
height: 1.6em;
}
}
.theme_toggle {
margin-left: 1.25em;
}
@media screen and (max-width: 800px) {
.item {
margin-left: 2em;
svg {
width: 1.75em;
height: 1.75em;
}
}
.theme_toggle {
margin-left: 1.6em;
}
}