Skip to content

Commit 4231bb2

Browse files
committed
Fix issue with whitespace wrapping in reveal
1 parent aebff18 commit 4231bb2

2 files changed

Lines changed: 3 additions & 0 deletions

File tree

RELEASE-NOTES.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222
- **Menu** - Fixes `disabled item` showing hover style for `secondary menu` **Thanks @tcmal** #6268
2323
- **CSS Variables** - Added use of `@normal` for normal font weight for all non-default themes included in repo. #6227
2424
- **Image** - Fixes margin being applied twice to `ui images` #6224
25+
- **Reveal** - Fix `whitespace: nowrap;` applying to content inside `slide reveal` and `move reveal`
2526

2627
**Docs**
2728
- Fixes CDN links in docs **Thanks @KSH-code**

src/definitions/elements/reveal.less

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,7 @@
6464
.ui.slide.reveal > .content {
6565
display: block;
6666
width: 100%;
67+
white-space: normal;
6768
float: left;
6869

6970
margin: 0em;
@@ -154,6 +155,7 @@
154155
.ui.move.reveal > .content {
155156
display: block;
156157
float: left;
158+
white-space: normal;
157159

158160
margin: 0em;
159161
transition: @moveTransition;

0 commit comments

Comments
 (0)