marcelines 33eef5c2aa
Add mobile navigation & Composer (#333)
* feat: add composer component

* feat: complete composer component and few minor fixes

* feat: add several improvements and new features

* fix: change icon button in composer
2023-01-20 15:06:26 +01:00

37 lines
459 B
CSS

html,
body,
#root {
height: 100%;
overscroll-behavior: none;
}
#app {
height: 100%;
display: grid;
grid-template-columns: 352px 1fr auto;
}
#main {
display: grid;
grid-template-rows: 56px 1fr 100px;
height: 100vh;
overflow: hidden;
border: 1px solid rgba(0, 0, 0, 0.1);
border-width: 0 1px;
}
#sidebar {
overflow: auto;
height: 100vh;
}
#content {
overflow: auto;
padding: 8px;
}
#members {
width: 352px;
color: #000;
}