Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: icon margin in user/settings/repos #20281

Merged
merged 13 commits into from
Jul 14, 2022
Merged
10 changes: 5 additions & 5 deletions templates/user/settings/repos.tmpl
Original file line number Diff line number Diff line change
Expand Up @@ -109,15 +109,15 @@
<div class="item">
<div class="content">
{{if .IsPrivate}}
<span class="text gold iconFloat">{{svg "octicon-lock"}}</span>
{{svg "octicon-lock" 16 "mr-2 iconFloat"}}
zeripath marked this conversation as resolved.
Show resolved Hide resolved
{{else if .IsFork}}
<span class="iconFloat">{{svg "octicon-repo-forked"}}</span>
{{svg "octicon-repo-forked" 16 "mr-2 iconFloat"}}
{{else if .IsMirror}}
<span class="iconFloat">{{svg "octicon-mirror"}}</span>
{{svg "octicon-mirror" 16 "mr-2 iconFloat"}}
{{else if .IsTemplate}}
<span class="iconFloat">{{svg "octicon-repo-template"}}</span>
{{svg "octicon-repo-template" 16 "mr-2 iconFloat"}}
{{else}}
<span class="iconFloat">{{svg "octicon-repo"}}</span>
{{svg "octicon-repo" 16 "mr-2 iconFloat"}}
{{end}}
<a class="name" href="{{.Link}}">{{.OwnerName}}/{{.Name}}</a>
<span>{{FileSize .Size}}</span>
Expand Down