diff options
| author | Mark Otto <[email protected]> | 2016-11-26 01:44:06 -0800 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2016-11-26 01:44:06 -0800 |
| commit | 5ab99abd97ecbfff2e7a44200bba912f60eef695 (patch) | |
| tree | f5b130c2cb05bc382849cdca4df7f9efb7561442 | |
| parent | b6b8280938917659571b64c01bbf7bcb01b01e55 (diff) | |
| download | bootstrap-5ab99abd97ecbfff2e7a44200bba912f60eef695.tar.xz bootstrap-5ab99abd97ecbfff2e7a44200bba912f60eef695.zip | |
prevent double border on responsive .table-border
| -rw-r--r-- | scss/_tables.scss | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/scss/_tables.scss b/scss/_tables.scss index 89b03e4b1..0d2492a0b 100644 --- a/scss/_tables.scss +++ b/scss/_tables.scss @@ -150,6 +150,11 @@ // // border: $table-border-width solid $table-border-color; // -ms-overflow-style: -ms-autohiding-scrollbar; // See https://github.com/twbs/bootstrap/pull/10057 + + // Prevent double border on horizontal scroll due to use of `display: block;` + &.table-bordered { + border: 0; + } } |
