prevent double border on responsive .table-border

This commit is contained in:
Mark Otto 2016-11-26 01:44:06 -08:00
parent b6b8280938
commit 5ab99abd97
1 changed files with 5 additions and 0 deletions

View File

@ -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;
}
}