[FIX] Remove margin from quote inside quote (#21779)

pull/23169/head
Tiago Evangelista Pinto 4 years ago committed by GitHub
parent c292848bf7
commit d03ee51b9d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      app/reactions/client/stylesheets/reaction.css
  2. 8
      app/theme/client/imports/general/base_old.css
  3. 2
      client/components/Message/Attachments/QuoteAttachment.tsx

@ -1,6 +1,6 @@
.message {
& .reactions {
margin-top: 4px;
margin-top: 8px;
padding: 0;
& > li {

@ -62,14 +62,6 @@
content: "";
}
&:first-child {
margin-top: 4px;
}
&:last-child {
margin-bottom: 4px;
}
&:first-child::before {
border-radius: 2px 2px 0 0;
}

@ -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>
)}

Loading…
Cancel
Save