Skip to content

Commit

Permalink
fix log vertical alignment (#866)
Browse files Browse the repository at this point in the history
  • Loading branch information
Megha-Dev-19 authored Jul 9, 2024
1 parent 78bdeeb commit 12b2b06
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -446,7 +446,10 @@ const Log = ({ timestamp }) => {
: "inline-flex")
}
>
<span className="inline-flex fw-bold text-black">
<span
className="inline-flex fw-bold text-black"
style={{ marginRight: 0 }}
>
<AccountProfile accountId={editorId} showAccountId={true} />
</span>
{parseProposalKeyAndValue(i.key, i.modifiedValue, i.originalValue)}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ const size = props.size ?? "md";
const showAccountId = props.showAccountId;
const Avatar = styled.div`
&.sm {
min-width: 30px;
max-width: 30px;
min-height: 30px;
max-height: 30px;
min-width: 26px;
max-width: 26px;
min-height: 26px;
max-height: 26px;
}
&.md {
min-width: 40px;
Expand Down

0 comments on commit 12b2b06

Please sign in to comment.