18 lines
323 B
SCSS
18 lines
323 B
SCSS
.header-toolbar {
|
|
display: flex;
|
|
align-items: center;
|
|
|
|
.left-group {
|
|
width: 100px;
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 12px; // optional spacing between menu and dropdown
|
|
}
|
|
|
|
.right-group {
|
|
margin-left: auto; // pushes it to the far right
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
}
|