mirror of
https://github.com/clearml/clearml-web
synced 2025-04-05 21:25:13 +00:00
55 lines
912 B
SCSS
Executable File
55 lines
912 B
SCSS
Executable File
@import "webapp-common/shared/ui-components/styles/variables";
|
|
@import "webapp-common/layout/layout.scss";
|
|
|
|
$notifier-height: 30px;
|
|
|
|
notification-container {
|
|
position: relative;
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
.root-container {
|
|
display: flex;
|
|
height: 100%;
|
|
width: 100%;
|
|
|
|
.app-container {
|
|
flex: 1;
|
|
height: 100%;
|
|
width: calc(100% - #{$side-bar-close-width});
|
|
|
|
&.notifier-open {
|
|
height: calc(100% - #{$notifier-height});
|
|
|
|
.main-router + * {
|
|
height: calc(100% - #{$top-bar-height});
|
|
}
|
|
}
|
|
|
|
.main-router + * {
|
|
display: block;
|
|
height: calc(100% - #{$top-bar-height});
|
|
}
|
|
|
|
&.login-page {
|
|
.main-router + * {
|
|
height: 100%;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
#color-picker-outlet {
|
|
position: absolute;
|
|
visibility: hidden;
|
|
}
|
|
|
|
iframe.iframe-maximized {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
height: 100%;
|
|
width: 100%;
|
|
z-index: 999;
|
|
} |