mirror of
https://github.com/status-im/status-web.git
synced 2025-01-19 00:53:15 +00:00
33eef5c2aa
* 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
37 lines
459 B
CSS
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;
|
|
}
|