diff options
| author | Mark Otto <[email protected]> | 2016-12-23 11:23:22 -0800 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2016-12-24 14:21:04 -0800 |
| commit | e4933c72da93453d45af2dc71197000742ef1bb4 (patch) | |
| tree | 0f7f598f649baff19a1f2d11cf26d6152a17f8bf | |
| parent | 9979827cd367050bab29fa10642bf4ca517cf896 (diff) | |
| download | bootstrap-e4933c72da93453d45af2dc71197000742ef1bb4.tar.xz bootstrap-e4933c72da93453d45af2dc71197000742ef1bb4.zip | |
fix incorrect class name for inline-flex
| -rw-r--r-- | scss/utilities/_display.scss | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scss/utilities/_display.scss b/scss/utilities/_display.scss index 6d38760e6..b2fc976c1 100644 --- a/scss/utilities/_display.scss +++ b/scss/utilities/_display.scss @@ -14,6 +14,6 @@ .d#{$infix}-table { display: table !important; } .d#{$infix}-table-cell { display: table-cell !important; } .d#{$infix}-flex { display: flex !important; } - .d#{$infix}-flex-inline { display: inline-flex !important; } + .d#{$infix}-inline-flex { display: inline-flex !important; } } } |
