fix margin on tables

This commit is contained in:
Mark Otto 2014-12-04 15:25:57 -08:00
parent 7bc020cce0
commit 32878bca7f
1 changed files with 3 additions and 2 deletions

View File

@ -21,7 +21,8 @@ th {
.table { .table {
width: 100%; width: 100%;
max-width: 100%; max-width: 100%;
margin-bottom: $line-height-computed; margin-bottom: $spacer;
// Cells // Cells
> thead, > thead,
> tbody, > tbody,
@ -173,7 +174,7 @@ table {
@media screen and (max-width: $screen-xs-max) { @media screen and (max-width: $screen-xs-max) {
width: 100%; width: 100%;
margin-bottom: ($line-height-computed * 0.75); margin-bottom: $spacer;
overflow-y: hidden; overflow-y: hidden;
-ms-overflow-style: -ms-autohiding-scrollbar; -ms-overflow-style: -ms-autohiding-scrollbar;
border: 1px solid $table-border-color; border: 1px solid $table-border-color;