updater: Add top and bottom margins between commits (#2042)

Co-authored-by: V <vendicated@riseup.net>
This commit is contained in:
Hari Rana 2024-01-05 18:55:14 -05:00 committed by GitHub
parent be9ec3b7ac
commit d5c58ab2b3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -81,9 +81,12 @@ function HashLink({ repo, hash, disabled = false }: { repo: string, hash: string
function Changes({ updates, repo, repoPending }: CommonProps & { updates: typeof changes; }) {
return (
<Card style={{ padding: ".5em" }}>
<Card style={{ padding: "0 0.5em" }}>
{updates.map(({ hash, author, message }) => (
<div>
<div style={{
marginTop: "0.5em",
marginBottom: "0.5em"
}}>
<code><HashLink {...{ repo, hash }} disabled={repoPending} /></code>
<span style={{
marginLeft: "0.5em",