diff --git a/RELEASE-NOTES.md b/RELEASE-NOTES.md index 5cdfe0f28..a353dfe63 100755 --- a/RELEASE-NOTES.md +++ b/RELEASE-NOTES.md @@ -22,6 +22,7 @@ - **Menu** - Fixes `disabled item` showing hover style for `secondary menu` **Thanks @tcmal** #6268 - **CSS Variables** - Added use of `@normal` for normal font weight for all non-default themes included in repo. #6227 - **Image** - Fixes margin being applied twice to `ui images` #6224 +- **Reveal** - Fix `whitespace: nowrap;` applying to content inside `slide reveal` and `move reveal` **Docs** - Fixes CDN links in docs **Thanks @KSH-code** diff --git a/src/definitions/elements/reveal.less b/src/definitions/elements/reveal.less index 4531f31bd..41b376471 100755 --- a/src/definitions/elements/reveal.less +++ b/src/definitions/elements/reveal.less @@ -64,6 +64,7 @@ .ui.slide.reveal > .content { display: block; width: 100%; + white-space: normal; float: left; margin: 0em; @@ -154,6 +155,7 @@ .ui.move.reveal > .content { display: block; float: left; + white-space: normal; margin: 0em; transition: @moveTransition;