add spacing to tags, branches, bookmarks pages

Commit 3e2646ffb077 · Harrison Erd · 2026-05-05 03:41 -0400

Changeset
3e2646ffb077a4962e500dc36e75a4cd9c5f8d71

View source at this commit

Comments

No comments yet.

Log in to comment

Diff

diff --git a/templates/bookmarks.tpl b/templates/bookmarks.tpl
--- a/templates/bookmarks.tpl
+++ b/templates/bookmarks.tpl
@@ -18,7 +18,7 @@
       % for bookmark in bookmarks:
         <li>
           <code>{{bookmark["name"]}}</code>
-          <div>
+          <div style="margin-bottom:20px;">
             <strong><a href="/{{repo['owner_username']}}/{{repo['name']}}/commits/{{bookmark['short_node']}}">{{bookmark["short_node"]}}</a></strong>
             <small>rev {{bookmark["rev"]}} · {{bookmark["date"]}}</small>
             <p>{{bookmark["summary"]}}</p>
diff --git a/templates/branches.tpl b/templates/branches.tpl
--- a/templates/branches.tpl
+++ b/templates/branches.tpl
@@ -18,7 +18,7 @@
       % for branch in branches:
         <li>
           <code>{{branch["name"]}}</code>
-          <div>
+          <div style="margin-bottom:20px;">
             <strong><a href="/{{repo['owner_username']}}/{{repo['name']}}/commits/{{branch['short_node']}}">{{branch["short_node"]}}</a></strong>
             <small>rev {{branch["rev"]}} · {{branch["date"]}}{{" · closed" if branch["closed"] else ""}}</small>
             <p>{{branch["summary"]}}</p>
diff --git a/templates/tags.tpl b/templates/tags.tpl
--- a/templates/tags.tpl
+++ b/templates/tags.tpl
@@ -18,7 +18,7 @@
       % for tag in tags:
         <li>
           <code>{{tag["name"]}}</code>
-          <div>
+          <div style="margin-bottom:20px;">
             <strong><a href="/{{repo['owner_username']}}/{{repo['name']}}/commits/{{tag['short_node']}}">{{tag["short_node"]}}</a></strong>
             <small>rev {{tag["rev"]}} · {{tag["date"]}}{{" · local" if tag["local"] else ""}}</small>
             <p>{{tag["summary"]}}</p>