21 lines
373 B
SCSS
21 lines
373 B
SCSS
|
|
mat-toolbar{
|
|
background-color: rgba(153,153,153,0.16);
|
|
backdrop-filter: blur(8px);
|
|
}
|
|
.menu-spacer {
|
|
flex: 1 1 auto;
|
|
}
|
|
.fixed-top {
|
|
position: fixed;
|
|
top: 0;
|
|
right: 0;
|
|
left: 0;
|
|
z-index: 1000; // Ensure toolbar stays above other content
|
|
}
|
|
.mat-mdc-raised-button:not(:disabled){
|
|
color: rgba(24, 255, 255, 0.96);
|
|
background-color: rgba(24,255,255,0.04);
|
|
}
|
|
|