Skip to content

Commit

Permalink
Fix issue with whitespace wrapping in reveal
Browse files Browse the repository at this point in the history
  • Loading branch information
jlukic committed Mar 19, 2018
1 parent aebff18 commit 4231bb2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions RELEASE-NOTES.md
Expand Up @@ -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**
Expand Down
2 changes: 2 additions & 0 deletions src/definitions/elements/reveal.less
Expand Up @@ -64,6 +64,7 @@
.ui.slide.reveal > .content {
display: block;
width: 100%;
white-space: normal;
float: left;

margin: 0em;
Expand Down Expand Up @@ -154,6 +155,7 @@
.ui.move.reveal > .content {
display: block;
float: left;
white-space: normal;

margin: 0em;
transition: @moveTransition;
Expand Down

0 comments on commit 4231bb2

Please sign in to comment.