Monorepo for Tangled tangled.org
2

Configure Feed

Select the types of activity you want to include in your feed.

appview/login: enlarge logotype

Signed-off-by: eti <eti@eti.tf>

+2 -3
+1 -1
appview/pages/templates/fragments/logotype.html
··· 1 1 {{ define "fragments/logotype" }} 2 2 <span class="flex items-center gap-2"> 3 - {{ template "fragments/dolly/logotype" (dict "Classes" "size-16") }} 3 + {{ template "fragments/dolly/logotype" (dict "Classes" (or .Classes "size-16")) }} 4 4 <span class="font-normal not-italic text-xs rounded bg-gray-100 dark:bg-gray-700 px-1"> 5 5 alpha 6 6 </span>
+1 -2
appview/pages/templates/layouts/loginbase.html
··· 17 17 18 18 {{ define "logo" }} 19 19 <h1 class="flex place-content-center text-3xl font-semibold italic dark:text-white" > 20 - {{ template "fragments/logotype" }} 20 + {{ template "fragments/logotype" (dict "Classes" "w-48 h-24") }} 21 21 </h1> 22 22 <h2 class="text-center text-xl italic dark:text-white"> 23 23 tightly-knit social coding. 24 24 </h2> 25 25 {{ end }} 26 -