Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
use variables in markdown tables scss
  • Loading branch information
shawnbot committed Sep 30, 2019
commit 7dad0ee8aec282bb60ea0cb80b8a3679163cb3b4
5 changes: 2 additions & 3 deletions src/markdown/tables.scss
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,12 @@

th,
td {
padding: 6px 13px;
border: 1px solid lighten($gray-300, 5%);
padding: ($spacer-2 - 2) ($spacer-3 - 2);
border: $border-width $border-style $border-gray-dark;
}

tr {
background-color: $bg-white;
border-top: 1px solid darken($gray-300, 4%);

&:nth-child(2n) {
background-color: $gray-100;
Expand Down