Commit 256f3a99 authored by Mark Otto's avatar Mark Otto

Merge pull request #11086 from twbs/table-responsive-breakpoint

fix .table-responsive media query; refs #11067
parents 50dd5d50 5c64ef39
......@@ -1757,7 +1757,7 @@ table th[class*="col-"] {
border-color: #f7e1b5;
}
@media (max-width: 768px) {
@media (max-width: 767px) {
.table-responsive {
width: 100%;
margin-bottom: 15px;
......
This source diff could not be displayed because it is too large. You can view the blob instead.
......@@ -171,7 +171,7 @@ table {
// by enabling horizontal scrolling. Only applies <768px. Everything above that
// will display normally.
@media (max-width: @screen-sm-min) {
@media (max-width: @screen-xs-max) {
.table-responsive {
width: 100%;
margin-bottom: 15px;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment