mirror of
https://github.com/Cian-H/am-d-model.eu.git
synced 2025-12-22 13:41:56 +00:00
27 lines
466 B
SCSS
27 lines
466 B
SCSS
.navigation-header-items-outer {
|
|
display: flex;
|
|
flex-direction: row-reverse;
|
|
width: 100%;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.navigation-header-site-name {
|
|
color: #000000;
|
|
text-align: left;
|
|
font-family: "Assistant", sans-serif;
|
|
font-size: 24px;
|
|
position: relative;
|
|
padding: 8px;
|
|
}
|
|
|
|
.flexrow-right {
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: flex-end;
|
|
}
|
|
|
|
.flexrow-left {
|
|
@extend .flexrow-right;
|
|
justify-content: flex-start;
|
|
}
|