Files
web/components/Header/TopMenu/topMenu.module.css
2024-09-06 09:00:07 +02:00

38 lines
654 B
CSS

.topMenu {
display: none;
background-color: var(--Base-Surface-Subtle-Normal);
padding: var(--Spacing-x2) var(--Spacing-x-one-and-half);
border-bottom: 1px solid var(--Base-Border-Subtle);
}
.content {
max-width: var(--max-width-navigation);
margin: 0 auto;
display: grid;
justify-content: space-between;
gap: var(--Spacing-x3);
}
.options {
display: flex;
gap: var(--Spacing-x2);
align-items: center;
}
@media screen and (min-width: 768px) {
.topMenu {
display: block;
}
.content {
grid-template-areas: "topLink options";
}
.topLink {
grid-area: topLink;
}
.options {
grid-area: options;
}
}