24 lines
386 B
SCSS
24 lines
386 B
SCSS
//#header_panel{
|
|
// background-color: #181d1f;
|
|
//}
|
|
.example-spacer {
|
|
flex: 1 1 auto;
|
|
}
|
|
|
|
mat-toolbar{
|
|
background-color: rgba(153,153,153,0.16);
|
|
backdrop-filter: blur(8px);
|
|
}
|
|
|
|
.fixed-top {
|
|
position: fixed;
|
|
top: 0;
|
|
right: 0;
|
|
left: 0;
|
|
z-index: 1000; // Ensure toolbar stays above other content
|
|
}
|
|
.router_outlet_padding{
|
|
padding-top: 60px;
|
|
scroll-padding-inline: 40%;
|
|
}
|