UX: Remove padding from empty row

This commit is contained in:
Kris 2019-05-22 14:27:17 -04:00
parent ca03baf2b2
commit 881c832a2f
1 changed files with 3 additions and 2 deletions

View File

@ -319,7 +319,9 @@
} }
> tr > th, > tr > th,
> tr > td { > tr > td {
padding: 0.5em 1em 0.5em 0; &:not(:empty) {
padding: 0.5em 1em 0.5em 0;
}
@include breakpoint("mobile") { @include breakpoint("mobile") {
overflow: hidden; overflow: hidden;
text-overflow: ellipsis; text-overflow: ellipsis;
@ -465,7 +467,6 @@
tr.reviewable-score { tr.reviewable-score {
display: grid; display: grid;
grid-template-columns: auto auto 1fr; grid-template-columns: auto auto 1fr;
grid-template-rows: 1fr 1fr;
} }
td.reviewable-score-spacer { td.reviewable-score-spacer {
display: none; display: none;