2025-12-08 08:49:59 +01:00

22 lines
453 B
SCSS

.header {
backdrop-filter: blur(10px);
background: rgba(255, 255, 255, 0.5);
.header__toolbar {
display: flex;
align-items: center;
.header__left-group {
width: 100px;
display: flex;
align-items: center;
gap: 12px; // optional spacing between menu and dropdown
}
.header__right-group {
margin-left: auto; // pushes it to the far right
display: flex;
align-items: center;
}
}
}