+2
-2
appview/pages/templates/fragments/repoActions.html
+2
-2
appview/pages/templates/fragments/repoActions.html
···
1
1
{{ define "fragments/repoActions" }}
2
-
<div class="flex items-center">
2
+
<div class="flex items-center gap-2">
3
3
<button id="starBtn"
4
4
class="btn disabled:opacity-50 disabled:cursor-not-allowed"
5
5
···
26
26
</div>
27
27
</button>
28
28
<a class="btn no-underline hover:no-underline flex items-center" href="/{{ .FullName }}/fork">
29
-
{{ i "git-fork" "w-3 h-3 mr-1"}}
29
+
{{ i "git-fork" "w-3 h-3"}}
30
30
fork
31
31
</a>
32
32
</div>
+2
-5
appview/pages/templates/layouts/repobase.html
+2
-5
appview/pages/templates/layouts/repobase.html
···
18
18
<span class="select-none">/</span>
19
19
<a href="/{{ .RepoInfo.FullName }}" class="font-bold">{{ .RepoInfo.Name }}</a>
20
20
</div>
21
-
<div class="flex items-center">
22
-
<span class="mr-3">
23
-
{{ template "fragments/repoActions" .RepoInfo }}
24
-
</span>
25
-
</div>
21
+
22
+
{{ template "fragments/repoActions" .RepoInfo }}
26
23
</div>
27
24
{{ template "fragments/repoDescription" . }}
28
25
</section>