diff options
| author | Mark Otto <[email protected]> | 2013-08-15 13:24:48 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2013-08-15 13:24:48 -0700 |
| commit | 98368c0ccae4cbcc80b322b996e08ec2b9740c14 (patch) | |
| tree | f8fa98399642a11201afc4612b59dcc6ff13b43f /assets/css/docs.css | |
| parent | c0c72a64b4c7a752e080c5470202e733641b88ef (diff) | |
| download | bootstrap-98368c0ccae4cbcc80b322b996e08ec2b9740c14.tar.xz bootstrap-98368c0ccae4cbcc80b322b996e08ec2b9740c14.zip | |
fixes #9632: button spacing in narrow viewports
Diffstat (limited to 'assets/css/docs.css')
| -rw-r--r-- | assets/css/docs.css | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/assets/css/docs.css b/assets/css/docs.css index 8ed5ef52d..a90c6ca49 100644 --- a/assets/css/docs.css +++ b/assets/css/docs.css @@ -438,10 +438,14 @@ body { } /* Buttons */ -.bs-example > .btn { +.bs-example > .btn, +.bs-example > .btn-group { margin-top: 5px; margin-bottom: 5px; } +.bs-example > .btn-toolbar + .btn-toolbar { + margin-top: 10px; +} /* Forms */ .bs-example-control-sizing select, @@ -536,6 +540,10 @@ body { .bs-example-tooltips { text-align: center; } +.bs-example-tooltips > .btn { + margin-top: 5px; + margin-bottom: 5px; +} /* Popovers */ .bs-example-popover { |
