mirror of
https://github.com/clearml/clearml-web
synced 2025-06-26 18:27:02 +00:00
48 lines
798 B
SCSS
48 lines
798 B
SCSS
@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;
|
|
}
|
|
|