23 lines
379 B
SCSS
23 lines
379 B
SCSS
.header {
|
|
width: 100%;
|
|
min-height: 56px;
|
|
height: fit-content;
|
|
padding: 16px;
|
|
display: grid;
|
|
grid-template-columns: 1fr auto 1fr;
|
|
align-items: center;
|
|
}
|
|
|
|
.header> :first-child {
|
|
justify-self: start;
|
|
}
|
|
|
|
.header> :nth-child(2) {
|
|
justify-self: center;
|
|
}
|
|
|
|
.header> :nth-child(n+3) {
|
|
justify-self: end;
|
|
display: inline-flex;
|
|
gap: 16px;
|
|
} |