diff options
| author | Mark Otto <[email protected]> | 2016-02-06 20:11:11 -0800 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2016-02-06 20:11:11 -0800 |
| commit | cf9079ecf9f37de31f4082e13eeda790d06e971c (patch) | |
| tree | c744f9684e357795117c1090e01c8da6ca946c29 /scss | |
| parent | f3802a839b7e3b0a153c1ad08122444bf17e4ecc (diff) | |
| parent | eee0a685a496e5158380e6fc841caad9d5f0f5dc (diff) | |
| download | bootstrap-cf9079ecf9f37de31f4082e13eeda790d06e971c.tar.xz bootstrap-cf9079ecf9f37de31f4082e13eeda790d06e971c.zip | |
Merge pull request #19104 from twbs/v4-dl-row
v4: Fix row-based <dl>
Diffstat (limited to 'scss')
| -rw-r--r-- | scss/_type.scss | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/scss/_type.scss b/scss/_type.scss index 9fe8194db..107575779 100644 --- a/scss/_type.scss +++ b/scss/_type.scss @@ -137,3 +137,14 @@ mark, content: "\00A0 \2014"; // nbsp, em dash } } + +@if not $enable-flex { + // Clean up some horizontal `<dl>`s built with grids + // scss-lint:disable QualifyingElement + dl.row { + > dd + dt { + clear: left; + } + } + // scss-lint:enable QualifyingElement +} |
