diff --git a/src/components/linkPreview/style.js b/src/components/linkPreview/style.js index fab8bbc6f8..6c1c5f4d28 100644 --- a/src/components/linkPreview/style.js +++ b/src/components/linkPreview/style.js @@ -10,7 +10,7 @@ export const LinkPreviewContainer = styled.a` border: 1px solid ${({ theme }) => theme.border.default}; ${'' /* box-shadow: ${Shadow.low} ${props => hexa(props.theme.bg.reverse, 0.1)}; */} overflow: hidden; position: relative; - margin: 0; + margin: ${props => (props.margin ? props.margin : '0')}; padding: 0; transition: ${Transition.reaction.off}; flex: auto; diff --git a/src/components/threadFeedCard/style.js b/src/components/threadFeedCard/style.js index 35953cb72c..1a0b0fd3cf 100644 --- a/src/components/threadFeedCard/style.js +++ b/src/components/threadFeedCard/style.js @@ -80,7 +80,8 @@ export const Attachments = styled(FlexRow)` align-self: stretch; align-items: center; justify-content: space-between; - margin: 12px 0 8px; + margin: 0; + margin-top: 8px; `; export const CreatorName = styled.span`