diff options
| author | Mark Otto <[email protected]> | 2013-09-06 09:22:19 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2013-09-06 09:22:19 -0700 |
| commit | b24adeb82f2ede7cac2884c7e155bb49cf23b68c (patch) | |
| tree | 480a947fdb16f8c5cfb8aaa2ea2890d8f31b6de2 /assets/css/docs.css | |
| parent | 394161f281fc643d2f2ab7b7064972310730e018 (diff) | |
| download | bootstrap-b24adeb82f2ede7cac2884c7e155bb49cf23b68c.tar.xz bootstrap-b24adeb82f2ede7cac2884c7e155bb49cf23b68c.zip | |
fix broke width of containers in docs given change to use width over max-width
Diffstat (limited to 'assets/css/docs.css')
| -rw-r--r-- | assets/css/docs.css | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/assets/css/docs.css b/assets/css/docs.css index cad3c479e..2b800732d 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, |
