forked from tangled.org/core
this repo has no description

fix repoActions styles

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