TeaWeb/shared/js/ui/AppRenderer.scss

83 lines
1.3 KiB
SCSS
Raw Normal View History

2021-01-05 18:13:57 +01:00
@import "../../css/static/properties";
@import "../../css/static/mixin";
.app {
display: flex;
flex-direction: column;
justify-content: stretch;
overflow: hidden;
height: 100%;
width: 100%;
padding: 5px;
}
2021-01-05 18:13:57 +01:00
/* TODO: Move this into the control bar? */
.controlBar {
z-index: 200;
2021-01-05 18:13:57 +01:00
display: flex;
flex-direction: row;
justify-content: center;
2021-01-05 18:13:57 +01:00
flex-shrink: 0;
flex-grow: 0;
2021-01-05 18:13:57 +01:00
border-radius: 5px;
2021-01-05 18:13:57 +01:00
height: 2em;
width: 100%;
}
2021-01-05 18:13:57 +01:00
.mainContainer {
display: flex;
flex-direction: column;
justify-content: stretch;
position: relative;
flex-shrink: 1;
2021-01-06 17:28:32 +01:00
height: 100%;
min-height: 400px;
2021-01-06 17:28:32 +01:00
margin-top: 5px;
}
.channelTreeAndSidebar {
display: flex;
flex-direction: row;
justify-content: stretch;
2021-01-05 18:13:57 +01:00
2021-04-25 11:45:57 +02:00
background: var(--app-background);
min-height: 27em;
}
2021-01-05 18:13:57 +01:00
.channelTree {
display: flex;
flex-direction: column;
justify-content: stretch;
2021-01-05 18:13:57 +01:00
background: var(--channel-tree-background);
min-width: 200px;
min-height: 100px;
2021-01-05 18:13:57 +01:00
overflow: hidden;
border-radius: 5px;
}
2021-01-05 18:13:57 +01:00
.sideBar {
min-width: 350px;
}
2021-01-05 18:13:57 +01:00
.containerLog {
display: flex;
flex-direction: row;
justify-content: stretch;
2021-01-05 18:13:57 +01:00
flex-shrink: 1;
flex-grow: 1;
2021-01-05 18:13:57 +01:00
min-height: 0;
2021-01-05 18:13:57 +01:00
}