bolt.new/app/styles/z-index.scss

34 lines
351 B
SCSS
Raw Normal View History

$zIndexMax: 999;
2024-07-31 21:21:40 +00:00
.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;
}
2024-08-20 16:35:44 +00:00
.z-file-tree-breadcrumb {
z-index: $zIndexMax - 1;
}
2024-07-31 21:21:40 +00:00
.z-max {
z-index: $zIndexMax;
}