#31, Make tables prettier

This commit is contained in:
Alex Shpak
2019-03-25 19:47:21 +01:00
parent c0a0aac386
commit d4abb9d34b
3 changed files with 15 additions and 4 deletions
+13 -2
View File
@@ -54,7 +54,18 @@ $block-border-radius: 0.15rem;
:last-child { margin-bottom: 0; }
}
table tr td {
padding: $padding-8;
table {
border-spacing: 0;
border-collapse: collapse;
tr th, tr td {
padding: $padding-8 $padding-16;
line-height: 1;
border: 1px solid $gray-200;
}
tr:nth-child(2n) {
background: $gray-100;
}
}
}