diff options
author | May <may@maymeow.com> | 2022-11-15 22:36:53 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-15 16:36:53 -0500 |
commit | f311d15a0ba6e4864d7e5dea83364f93e8eadca4 (patch) | |
tree | c29eb1314e9ab014a5b6b3d0a5a2cde540ef87c2 /templates | |
parent | 40229a7dd8edc0f07fb1982c0912fdf4df083871 (diff) | |
download | gitea-f311d15a0ba6e4864d7e5dea83364f93e8eadca4.tar.gz gitea-f311d15a0ba6e4864d7e5dea83364f93e8eadca4.zip |
Added space between avatar and username (#21825)
Added space between avatar and username which is missing on verified
commit message and avatar is too close to username which is don't look
nice.
Current state
![image](https://user-images.githubusercontent.com/3164256/202007728-d7d6ecac-f754-454c-a67f-e422f4aac5a5.png)
This is how it looks after change
![image](https://user-images.githubusercontent.com/3164256/202007984-d4a38a1c-7c24-4278-aa0f-9aa51c10f772.png)
Co-authored-by: zeripath <art27@cantab.net>
Co-authored-by: silverwind <me@silverwind.io>
Co-authored-by: techknowlogick <techknowlogick@gitea.io>
Diffstat (limited to 'templates')
-rw-r--r-- | templates/repo/commit_page.tmpl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/repo/commit_page.tmpl b/templates/repo/commit_page.tmpl index 8ece768832..2dcd02ad98 100644 --- a/templates/repo/commit_page.tmpl +++ b/templates/repo/commit_page.tmpl @@ -200,7 +200,7 @@ {{else}} <span class="ui text mr-3">{{.locale.Tr "repo.commits.signed_by_untrusted_user_unmatched"}}:</span> {{end}} - {{avatar .Verification.SigningUser 28}} + {{avatar .Verification.SigningUser 28 "mr-3"}} <a href="{{.Verification.SigningUser.HomeLink}}"><strong>{{.Verification.SigningUser.GetDisplayName}}</strong></a> {{else}} <span title="{{.locale.Tr "gpg.default_key"}}">{{svg "gitea-lock-cog" 16 "mr-3"}}</span> |