Skip to content

Commit

Permalink
fix styling overflows since header refactor
Browse files Browse the repository at this point in the history
  • Loading branch information
Connoropolous committed Dec 23, 2022
1 parent d2aa6ad commit c84646a
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 7 deletions.
4 changes: 2 additions & 2 deletions web/src/components/OutcomeTable/OutcomeTable.scss
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
background-color: var(--bg-color-tertiary);
margin: 0.5rem 0.5rem 0 0.5rem;
margin: 0.5rem;
border-radius: 0.5rem;
box-shadow: 0rem 0rem 1.25rem var(--shadow-color);

Expand Down Expand Up @@ -42,6 +42,6 @@
.outcome-table-rows {
flex: 1;
overflow-y: scroll;
padding-bottom: 9rem;
padding-bottom: 3rem;
}
}
6 changes: 3 additions & 3 deletions web/src/routes/ProjectView/PriorityView/PriorityView.scss
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@
margin: 0;
display: flex;
flex-direction: row;
height: 100vh;
flex: 1;
overflow: hidden;
padding: 0rem 0.5rem 0rem 0;
box-sizing: border-box;
}
Expand Down Expand Up @@ -202,8 +203,7 @@

.universal-priority-droppable-wrapper {
width: 100%;
padding-top: 0.5rem;
padding-bottom: 5rem;
padding: 0.5rem 0;

// TODO: figure out a way to make a classname or id for this div
// (draggable element) to prevent the need for !important
Expand Down
5 changes: 3 additions & 2 deletions web/src/routes/ProjectView/TableView/TableView.scss
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
.table-view {
height: 100vh;
}
flex: 1;
overflow: hidden;
}

0 comments on commit c84646a

Please sign in to comment.