feat(SW-186): implement cms data into new header
This commit is contained in:
@@ -8,12 +8,12 @@
|
||||
.content {
|
||||
max-width: var(--max-width-navigation);
|
||||
margin: 0 auto;
|
||||
display: flex;
|
||||
display: grid;
|
||||
justify-content: space-between;
|
||||
gap: var(--Spacing-x3);
|
||||
}
|
||||
|
||||
.right {
|
||||
.options {
|
||||
display: flex;
|
||||
gap: var(--Spacing-x2);
|
||||
align-items: center;
|
||||
@@ -23,4 +23,15 @@
|
||||
.topMenu {
|
||||
display: block;
|
||||
}
|
||||
.content {
|
||||
grid-template-areas: "topLink options";
|
||||
}
|
||||
|
||||
.topLink {
|
||||
grid-area: topLink;
|
||||
}
|
||||
|
||||
.options {
|
||||
grid-area: options;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user