14 lines
227 B
CSS
14 lines
227 B
CSS
.header-menu {
|
|
position: sticky;
|
|
top: 0;
|
|
background-color: var(--mat-menu-container-color);
|
|
z-index: 1;
|
|
padding-top: 5px;
|
|
}
|
|
|
|
.button-group {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
}
|