diff options
| author | Chris Rebert <[email protected]> | 2015-12-06 17:37:55 -0800 |
|---|---|---|
| committer | Chris Rebert <[email protected]> | 2015-12-06 17:37:55 -0800 |
| commit | 28bbf42e26ee321402d956c9f71f9fff7246420e (patch) | |
| tree | 531e9b3c706fd8cc20f0ccc9e28bfbaf76736192 | |
| parent | da87424a796a6c61866caaed1069360c822cdd4d (diff) | |
| download | bootstrap-28bbf42e26ee321402d956c9f71f9fff7246420e.tar.xz bootstrap-28bbf42e26ee321402d956c9f71f9fff7246420e.zip | |
Fix .font-italic utility class definition
Erratum from 26da610bd03e7efe9255b2b88f14449972f7d616
Refs #18001
| -rw-r--r-- | scss/_utilities.scss | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scss/_utilities.scss b/scss/_utilities.scss index 25ace532c..78265a31f 100644 --- a/scss/_utilities.scss +++ b/scss/_utilities.scss @@ -72,11 +72,11 @@ .text-uppercase { text-transform: uppercase !important; } .text-capitalize { text-transform: capitalize !important; } -// Weight +// Weight and italics .font-normal { font-weight: normal; } .font-bold { font-weight: bold; } -.font-italic { font-style: normal; } +.font-italic { font-style: italic; } // Contextual colors |
