Skip to content

Commit

Permalink
Update with recommendations from PR review
Browse files Browse the repository at this point in the history
  • Loading branch information
st-wong committed Oct 30, 2020
1 parent 8d86a87 commit cc961c5
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions src/_tables.scss
Original file line number Diff line number Diff line change
Expand Up @@ -67,21 +67,23 @@ $table-breakpoint: $size-lg !default;
}

tr {
border-bottom: $border-width solid $border-color;

&:first-child {
border-top: $border-width solid $border-color;
}
border-bottom: $border-width solid $border-color;
}

td, th {
td,
th {
border-bottom: 0;
display: block;
border-bottom: none;
}

td[data-th]:before {
td[data-th]::before {
content: attr(data-th);
font-weight: bold;
display: block;
font-weight: bold;
}
}
}
Expand Down

0 comments on commit cc961c5

Please sign in to comment.