alpha
Login
or
Join now
dunkirk.sh
/
core
forked from
tangled.org/core
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
This repository has no description
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Overview
Issues
Pulls
Pipelines
fix repoActions styles
author
Akshay
date
1 year ago
(Apr 2, 2025, 7:34 PM +0100)
commit
bfc5e706
bfc5e70644561a8228fcca9c0e555895618cf8c7
parent
1428c3be
1428c3be66f0fc3156d61da5a320af5cf657046d
+4
-7
2 changed files
Expand all
Collapse all
Unified
Split
appview
pages
templates
fragments
repoActions.html
layouts
repobase.html
+2
-2
appview/pages/templates/fragments/repoActions.html
Reviewed
···
1
1
{{ define "fragments/repoActions" }}
2
2
-
<div class="flex items-center">
2
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
29
-
{{ i "git-fork" "w-3 h-3 mr-1"}}
29
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
Reviewed
···
18
18
<span class="select-none">/</span>
19
19
<a href="/{{ .RepoInfo.FullName }}" class="font-bold">{{ .RepoInfo.Name }}</a>
20
20
</div>
21
21
-
<div class="flex items-center">
22
22
-
<span class="mr-3">
23
23
-
{{ template "fragments/repoActions" .RepoInfo }}
24
24
-
</span>
25
25
-
</div>
21
21
+
22
22
+
{{ template "fragments/repoActions" .RepoInfo }}
26
23
</div>
27
24
{{ template "fragments/repoDescription" . }}
28
25
</section>