diff options
Diffstat (limited to 'templates/repo/branch_dropdown.tmpl')
-rw-r--r-- | templates/repo/branch_dropdown.tmpl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/repo/branch_dropdown.tmpl b/templates/repo/branch_dropdown.tmpl index 81229c0ef5..5dd0553d48 100644 --- a/templates/repo/branch_dropdown.tmpl +++ b/templates/repo/branch_dropdown.tmpl @@ -26,12 +26,12 @@ <div class="two column row"> <a class="reference column" href="#" @click="mode = 'branches'; focusSearchField()"> <span class="text" :class="{black: mode == 'branches'}"> - {{svg "octicon-git-branch"}} {{.i18n.Tr "repo.branches"}} + {{svg "octicon-git-branch" 16 "mr-2"}}{{.i18n.Tr "repo.branches"}} </span> </a> <a class="reference column" href="#" @click="mode = 'tags'; focusSearchField()"> <span class="text" :class="{black: mode == 'tags'}"> - <i class="reference tags icon"></i> {{.i18n.Tr "repo.tags"}} + {{svg "octicon-tag" 16 "mr-2"}}{{.i18n.Tr "repo.tags"}} </span> </a> </div> |