Skip to content

Commit

Permalink
[FIX] Remove margin from quote inside quote (#21779)
Browse files Browse the repository at this point in the history
  • Loading branch information
tiagoevanp authored Sep 10, 2021
1 parent c292848 commit d03ee51
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 10 deletions.
2 changes: 1 addition & 1 deletion app/reactions/client/stylesheets/reaction.css
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
.message {
& .reactions {
margin-top: 4px;
margin-top: 8px;
padding: 0;

& > li {
Expand Down
8 changes: 0 additions & 8 deletions app/theme/client/imports/general/base_old.css
Original file line number Diff line number Diff line change
Expand Up @@ -62,14 +62,6 @@
content: "";
}

&:first-child {
margin-top: 4px;
}

&:last-child {
margin-bottom: 4px;
}

&:first-child::before {
border-radius: 2px 2px 0 0;
}
Expand Down
2 changes: 1 addition & 1 deletion client/components/Message/Attachments/QuoteAttachment.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ export const QuoteAttachment: FC<MessageQuoteAttachment> = ({
</Attachment.Author>
<MarkdownText parseEmoji variant='inline' content={text} />
{attachments && (
<Attachment.Inner>
<Attachment.Inner mbe='-12px'>
<Attachments attachments={attachments} />
</Attachment.Inner>
)}
Expand Down

0 comments on commit d03ee51

Please sign in to comment.