diff options
| author | Mark Otto <[email protected]> | 2012-02-20 16:06:42 -0800 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2012-02-20 16:06:42 -0800 |
| commit | 9c74f21966d134e8576cfcfae0bb5301fcd2facd (patch) | |
| tree | 8d4e886007e8f6415c405fa3069b837e279a4351 /less | |
| parent | 91fe8bc0f49bf2da396bd6904c8f954487247f57 (diff) | |
| download | bootstrap-9c74f21966d134e8576cfcfae0bb5301fcd2facd.tar.xz bootstrap-9c74f21966d134e8576cfcfae0bb5301fcd2facd.zip | |
fix overflow issue on tabbed content per #2079
Diffstat (limited to 'less')
| -rw-r--r-- | less/navs.less | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/less/navs.less b/less/navs.less index 1325bb15a..1fc42e4e9 100644 --- a/less/navs.less +++ b/less/navs.less @@ -260,7 +260,7 @@ .clearfix(); } .tab-content { - overflow: hidden; // prevent content from running below tabs + display: table; // prevent content from running below tabs } // Remove border on bottom, left, right |
