27 lines
510 B
CSS
27 lines
510 B
CSS
.navigationMenu {
|
|
list-style: none;
|
|
margin: 0;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
gap: var(--Spacing-x4);
|
|
display: none;
|
|
}
|
|
|
|
.navigationMenu.mobile {
|
|
display: grid;
|
|
width: 100%;
|
|
gap: 0;
|
|
justify-content: stretch;
|
|
padding: var(--Spacing-x-one-and-half) var(--Spacing-x2) var(--Spacing-x2);
|
|
}
|
|
|
|
.navigationMenu.mobile .item {
|
|
border-bottom: 1px solid var(--Base-Border-Subtle);
|
|
}
|
|
|
|
@media screen and (min-width: 768px) {
|
|
.navigationMenu.default {
|
|
display: flex;
|
|
}
|
|
}
|