diff options
author | silverwind <me@silverwind.io> | 2024-04-02 13:48:07 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-02 11:48:07 +0000 |
commit | 944c76e78423405a33450eb3d07cd2b772f4a81c (patch) | |
tree | e18268ab829c092eab1be9a8969090dda067d4e2 /templates/repo/issue/labels.tmpl | |
parent | b4825670596fe745cebdcc63a8ead4388602d42c (diff) | |
download | gitea-944c76e78423405a33450eb3d07cd2b772f4a81c.tar.gz gitea-944c76e78423405a33450eb3d07cd2b772f4a81c.zip |
Fix spacing in issue navbar (#30238)
Create a new `issue-navbar` class specifically for this bar, previous
class used in many places and I thought I had them all removed, but not
this one.
Fixes: https://github.com/go-gitea/gitea/issues/30226
Diffstat (limited to 'templates/repo/issue/labels.tmpl')
-rw-r--r-- | templates/repo/issue/labels.tmpl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/repo/issue/labels.tmpl b/templates/repo/issue/labels.tmpl index 6dc7e4ef64..230777efcc 100644 --- a/templates/repo/issue/labels.tmpl +++ b/templates/repo/issue/labels.tmpl @@ -2,7 +2,7 @@ <div role="main" aria-label="{{.Title}}" class="page-content repository labels"> {{template "repo/header" .}} <div class="ui container"> - <div class="navbar tw-mb-4"> + <div class="issue-navbar tw-mb-4"> {{template "repo/issue/navbar" .}} {{if and (or .CanWriteIssues .CanWritePulls) (not .Repository.IsArchived)}} <button class="ui small primary new-label button">{{ctx.Locale.Tr "repo.issues.new_label"}}</button> |