w-lab-app/src/components/layout/Header/Header.module.scss
gofnnp 502df85f97 AW-496-edits
edits
2025-07-27 09:20:27 +04:00

50 lines
762 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;
}
.menuButton.menuButton {
padding: 0;
width: fit-content;
background: none;
}
.notificationIcon {
position: relative;
& > .badge.badge {
min-width: 16px;
min-height: 16px;
max-width: 18px;
max-height: 18px;
border: 1px solid #fff;
position: absolute;
top: -1px;
right: -1px;
& > .badgeContent {
display: block;
font-size: 10px;
}
}
}