diff --git a/src/components/posts/view-post/helpers.tsx b/src/components/posts/view-post/helpers.tsx index e4c262b13..835b8e3af 100644 --- a/src/components/posts/view-post/helpers.tsx +++ b/src/components/posts/view-post/helpers.tsx @@ -203,18 +203,42 @@ export const PostImage = React.memo( setShouldImageBeCropped(isTallerThan16By9) } - const wrapperClassName = clsx(className, { + const wrapperClassName = clsx(className, 'w-100 d-flex', { DfPostImagePreviewWrapperCropped: shouldImageBeCropped, - DfPostImagePreviewWrapper: true, }) return ( - +
+ + +
) }, )