w-lab-app/src/components/layout/NavigationBar/NavigationBar.module.scss
gofnnp 851bcc1d4f main
edits
2025-06-16 20:38:32 +04:00

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;
}