diff options
| author | Mark Otto <[email protected]> | 2014-12-04 15:25:57 -0800 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2014-12-04 15:25:57 -0800 |
| commit | 32878bca7fa06f4a1d39a5aac1c096f89f363153 (patch) | |
| tree | 76b5363cb6e8f37449a43ab6d2ef6d7058767254 | |
| parent | 7bc020cce0b8fab30f4068ed76fe3c01d3717621 (diff) | |
| download | bootstrap-32878bca7fa06f4a1d39a5aac1c096f89f363153.tar.xz bootstrap-32878bca7fa06f4a1d39a5aac1c096f89f363153.zip | |
fix margin on tables
| -rw-r--r-- | scss/_tables.scss | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/scss/_tables.scss b/scss/_tables.scss index a47aa8e9c..21449e829 100644 --- a/scss/_tables.scss +++ b/scss/_tables.scss @@ -21,7 +21,8 @@ th { .table { width: 100%; max-width: 100%; - margin-bottom: $line-height-computed; + margin-bottom: $spacer; + // Cells > thead, > tbody, @@ -173,7 +174,7 @@ table { @media screen and (max-width: $screen-xs-max) { width: 100%; - margin-bottom: ($line-height-computed * 0.75); + margin-bottom: $spacer; overflow-y: hidden; -ms-overflow-style: -ms-autohiding-scrollbar; border: 1px solid $table-border-color; |
