Skip to content
Snippets Groups Projects
Commit 4122a837 authored by Sorin Davidoi's avatar Sorin Davidoi Committed by Eugen Rochko
Browse files

fix(components/media_modal): Aspect ratio (#4128)

* fix(components/media_modal): Aspect ratio

* fix: Remove useless style
parent 5fa2dd6e
No related branches found
No related tags found
No related merge requests found
......@@ -133,6 +133,7 @@ export default class ImageLoader extends React.PureComponent {
width={width}
height={height}
ref={this.setCanvasRef}
style={{ opacity: loading ? 1 : 0 }}
/>
{!loading && (
......
......@@ -94,7 +94,7 @@ export default class MediaModal extends ImmutablePureComponent {
<div className='media-modal__content'>
<IconButton className='media-modal__close' title={intl.formatMessage(messages.close)} icon='times' onClick={onClose} size={16} />
<ReactSwipeableViews onChangeIndex={this.handleSwipe} index={index}>
<ReactSwipeableViews onChangeIndex={this.handleSwipe} index={index} animateHeight>
{content}
</ReactSwipeableViews>
</div>
......
......@@ -2935,6 +2935,7 @@ button.icon-button.active i.fa-retweet {
canvas {
display: block;
background: url('../images/void.png') repeat;
object-fit: contain;
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment