0
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-02-19 16:54:24 +01:00

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

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