Skip to content

Commit c84646a

Browse files
committed
fix styling overflows since header refactor
1 parent d2aa6ad commit c84646a

File tree

3 files changed

+8
-7
lines changed

3 files changed

+8
-7
lines changed

web/src/components/OutcomeTable/OutcomeTable.scss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
-webkit-font-smoothing: antialiased;
77
-moz-osx-font-smoothing: grayscale;
88
background-color: var(--bg-color-tertiary);
9-
margin: 0.5rem 0.5rem 0 0.5rem;
9+
margin: 0.5rem;
1010
border-radius: 0.5rem;
1111
box-shadow: 0rem 0rem 1.25rem var(--shadow-color);
1212

@@ -42,6 +42,6 @@
4242
.outcome-table-rows {
4343
flex: 1;
4444
overflow-y: scroll;
45-
padding-bottom: 9rem;
45+
padding-bottom: 3rem;
4646
}
4747
}

web/src/routes/ProjectView/PriorityView/PriorityView.scss

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@
22
margin: 0;
33
display: flex;
44
flex-direction: row;
5-
height: 100vh;
5+
flex: 1;
6+
overflow: hidden;
67
padding: 0rem 0.5rem 0rem 0;
78
box-sizing: border-box;
89
}
@@ -202,8 +203,7 @@
202203

203204
.universal-priority-droppable-wrapper {
204205
width: 100%;
205-
padding-top: 0.5rem;
206-
padding-bottom: 5rem;
206+
padding: 0.5rem 0;
207207

208208
// TODO: figure out a way to make a classname or id for this div
209209
// (draggable element) to prevent the need for !important
Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
.table-view {
2-
height: 100vh;
3-
}
2+
flex: 1;
3+
overflow: hidden;
4+
}

0 commit comments

Comments
 (0)