Make board scrollable. WIP

This commit is contained in:
Chen-I Lim 2020-10-13 08:27:23 -07:00
parent 7f23f9dc41
commit aa1223923d

View file

@ -63,11 +63,12 @@ hr {
/* App frame */
#octo-tasks-app {
min-height: 100%;
height: 100%;
overflow: hidden;
}
#octo-tasks-app > #main {
min-height: 100%;
height: 100%;
}
/* Sidebar */
@ -76,7 +77,7 @@ hr {
display: flex;
flex-direction: row;
min-height: 100%;
height: 100%;
}
.octo-sidebar {
@ -108,9 +109,19 @@ hr {
/* Main app */
.octo-frame {
padding: 10px 95px 50px 95px;
.octo-app {
display: flex;
flex-direction: column;
min-width: 1000px;
overflow: auto;
}
.octo-frame {
display: flex;
flex-direction: column;
padding: 10px 95px 50px 95px;
}
.octo-board {