mirror of
https://github.com/stackblitz/bolt.new
synced 2024-11-27 14:32:46 +00:00
34 lines
351 B
SCSS
34 lines
351 B
SCSS
$zIndexMax: 999;
|
|
|
|
.z-logo {
|
|
z-index: $zIndexMax - 1;
|
|
}
|
|
|
|
.z-sidebar {
|
|
z-index: $zIndexMax - 2;
|
|
}
|
|
|
|
.z-port-dropdown {
|
|
z-index: $zIndexMax - 3;
|
|
}
|
|
|
|
.z-iframe-overlay {
|
|
z-index: $zIndexMax - 4;
|
|
}
|
|
|
|
.z-prompt {
|
|
z-index: 2;
|
|
}
|
|
|
|
.z-workbench {
|
|
z-index: 3;
|
|
}
|
|
|
|
.z-file-tree-breadcrumb {
|
|
z-index: $zIndexMax - 1;
|
|
}
|
|
|
|
.z-max {
|
|
z-index: $zIndexMax;
|
|
}
|