From: UTCWebDev Date: Tue, 27 Aug 2013 20:34:26 +0000 (-0400) Subject: Make custom max-width on row conform to Boostrap convention X-Git-Tag: v3.0.1~64^2^2~1 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5ce4b8c7ff95a01c0a02b940479d9b6ad21cb4de;p=thirdparty%2Fbootstrap.git Make custom max-width on row conform to Boostrap convention Bootstrap break point for tablet portrait 768 keeps the row intact, so it's not appropriate to have off-canvas elements at that width. Custom off-canvas.css should be breakpoint 767px --- diff --git a/examples/offcanvas/offcanvas.css b/examples/offcanvas/offcanvas.css index 5bb06ae6f1..8303a8630b 100644 --- a/examples/offcanvas/offcanvas.css +++ b/examples/offcanvas/offcanvas.css @@ -14,7 +14,7 @@ footer { * Off Canvas * -------------------------------------------------- */ -@media screen and (max-width: 768px) { +@media screen and (max-width: 767px) { .row-offcanvas { position: relative; -webkit-transition: all 0.25s ease-out;