summaryrefslogtreecommitdiffci
path: root/views/pages/language-pick.html
diff options
from:
to:
context:
space:
mode:
authorGravatar SayaAndy <saya.andy@posteo.com> 2026-05-19 02:46:22 +0700
committerGravatar SayaAndy <saya.andy@posteo.com> 2026-05-19 02:46:22 +0700
commit1776fd1e933209deebbaf3bc6d49c83768f104a6 (patch)
treec1014c16b998bd3a77cdae98869332c744c436b9 /views/pages/language-pick.html
parent205929e077d5605ba213de4e27145bbe4e08768f (diff)
downloadweb-1776fd1e933209deebbaf3bc6d49c83768f104a6.tar.gz
web-1776fd1e933209deebbaf3bc6d49c83768f104a6.zip
feat: smooth rem transition through screen size change (also zoom more)
feat: add elevation to accent buttons feat: make blog catalogue buttons accent feat: redo shadowing & inset shadowing feat: add edge blur for thumbnails feat: replace most px units with rem units feat: inset shadow elevation attributes feat: remove most dotted borders fix: path validating in get like handler feat: add left padding to radio buttons in blog catalogue
Diffstat (limited to 'views/pages/language-pick.html')
-rw-r--r--views/pages/language-pick.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/views/pages/language-pick.html b/views/pages/language-pick.html
index f4119e4..9576a65 100644
--- a/views/pages/language-pick.html
+++ b/views/pages/language-pick.html
@@ -1,7 +1,7 @@
{{ define "body" }}
<div class="flex flex-col justify-center text-3xl h-full">
{{- range .AvailableLanguages }}
- <hr class="border-t-2 border-dotted border-main-hard">
+ <hr class="border-t-[0.125rem] border-dotted border-main-hard">
<div class="nth-[2n+1_of_div]:bg-background-medium/50 nth-[2n_of_div]:bg-background-light/50 p-2.5 flex flex-row justify-center justify-items-center">
<a href="/{{ .Name }}" class="w-12 h-12 basis-12 shrink-0 mr-4">
<img onclick="return changeUrl('{{ .Name }}');" class="w-full h-full aspect-square cursor-pointer object-cover rounded-md select-none" src="{{ .Flag }}">
@@ -11,6 +11,6 @@
</a>
</div>
{{- end }}
- <hr class="border-t-2 border-dotted border-main-hard">
+ <hr class="border-t-[0.125rem] border-dotted border-main-hard">
</div>
{{ end }}