Files
clearml-web/src/app/app.component.scss
2022-11-01 12:40:14 +02:00

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;
}