UX: Remove padding from empty row
This commit is contained in:
parent
ca03baf2b2
commit
881c832a2f
|
@ -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;
|
||||||
|
|
Loading…
Reference in New Issue