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