27 lines
448 B
SCSS
27 lines
448 B
SCSS
.taskboard {
|
|
height: $main-height;
|
|
overflow: hidden;
|
|
position: relative;
|
|
h1,
|
|
.graphics-container,
|
|
.summary {
|
|
flex-shrink: 0;
|
|
}
|
|
.graphics-container {
|
|
@include slide(300px, hidden);
|
|
}
|
|
}
|
|
|
|
.taskboard-header {
|
|
align-items: center;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.taskboard-inner {
|
|
display: flex;
|
|
flex-direction: column;
|
|
height: 100%;
|
|
overflow: hidden;
|
|
}
|