From b24adeb82f2ede7cac2884c7e155bb49cf23b68c Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Fri, 6 Sep 2013 09:22:19 -0700 Subject: [PATCH] fix broke width of containers in docs given change to use width over max-width --- assets/css/docs.css | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/assets/css/docs.css b/assets/css/docs.css index cad3c479e1..2b800732d5 100644 --- a/assets/css/docs.css +++ b/assets/css/docs.css @@ -622,6 +622,11 @@ h1[id] { } } +/* Undo width of container */ +.bs-example .container { + width: auto; +} + /* Tweak content of examples for optimum awesome */ .bs-example > p:last-child, .bs-example > ul:last-child,