2023-01-16 12:08:24 +00:00
|
|
|
html,
|
|
|
|
body,
|
|
|
|
#root {
|
|
|
|
height: 100%;
|
|
|
|
overscroll-behavior: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
#app {
|
|
|
|
height: 100%;
|
|
|
|
display: grid;
|
2023-01-18 15:43:23 +00:00
|
|
|
grid-template-columns: 352px 1fr auto;
|
2023-01-16 12:08:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#main {
|
|
|
|
display: grid;
|
|
|
|
grid-template-rows: 56px 1fr 100px;
|
2023-01-18 15:43:23 +00:00
|
|
|
height: 100vh;
|
2023-01-20 14:06:26 +00:00
|
|
|
overflow: hidden;
|
2023-01-16 12:08:24 +00:00
|
|
|
border: 1px solid rgba(0, 0, 0, 0.1);
|
2023-01-20 14:06:26 +00:00
|
|
|
border-width: 0 1px;
|
2023-01-16 12:08:24 +00:00
|
|
|
}
|
2023-01-18 13:15:51 +00:00
|
|
|
|
|
|
|
#sidebar {
|
|
|
|
overflow: auto;
|
|
|
|
height: 100vh;
|
|
|
|
}
|
2023-01-18 15:43:23 +00:00
|
|
|
|
|
|
|
#content {
|
|
|
|
overflow: auto;
|
|
|
|
padding: 8px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#members {
|
|
|
|
width: 352px;
|
|
|
|
color: #000;
|
|
|
|
}
|