mirror of
https://github.com/stackblitz/bolt.new
synced 2024-11-27 22:42:21 +00:00
14 lines
135 B
SCSS
14 lines
135 B
SCSS
$zIndexMax: 999;
|
|
|
|
.z-logo {
|
|
z-index: $zIndexMax - 1;
|
|
}
|
|
|
|
.z-sidebar {
|
|
z-index: $zIndexMax - 2;
|
|
}
|
|
|
|
.z-max {
|
|
z-index: $zIndexMax;
|
|
}
|