diff options
| author | 2026-01-08 20:42:05 +0700 | |
|---|---|---|
| committer | 2026-01-08 20:42:05 +0700 | |
| commit | e4f6790aab7f1b447892d0ed999dff8af45ac33e (patch) | |
| tree | bc6e763f94ba33a5206d2ab18481229dd53ab0e1 /views/pages/global-map.html | |
| parent | 14a43335c8984039d31c559ad384528b23a632d4 (diff) | |
| download | web-e4f6790aab7f1b447892d0ed999dff8af45ac33e.tar.gz web-e4f6790aab7f1b447892d0ed999dff8af45ac33e.zip | |
feat: move like button to header to make it more prominent
fix: light hard and soft colors mismatch in lilac theme
refactor: use var for noise image in themes
Diffstat (limited to 'views/pages/global-map.html')
| -rw-r--r-- | views/pages/global-map.html | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/views/pages/global-map.html b/views/pages/global-map.html index 8961aab..52ea841 100644 --- a/views/pages/global-map.html +++ b/views/pages/global-map.html @@ -44,22 +44,22 @@ <div id="sidebar" class="bg-sidebar block fixed shadow-[0_0_0.4rem_black] z-1001 w-fit h-auto"> <div class="text-[3rem] flex flex-col gap-0 relative z-1001"> - <a href="./" class="toolbar-button w-fit h-fit" draggable="false"> + <a href="./" class="themed-button themed-button-sidebar w-fit h-fit" draggable="false"> <i class="fas fa-circle-left flex w-18 h-18 content-center text-center text-sidebar"></i> </a> - <a href="/{{ .Lang }}" class="toolbar-button w-fit h-fit" draggable="false"> + <a href="/{{ .Lang }}" class="themed-button themed-button-sidebar w-fit h-fit" draggable="false"> <i class="fas fa-home flex w-18 h-18 content-center text-center text-sidebar"></i> </a> - <a href="/{{ .Lang }}/blog" class="toolbar-button w-fit h-fit" draggable="false"> + <a href="/{{ .Lang }}/blog" class="themed-button themed-button-sidebar w-fit h-fit" draggable="false"> <i class="fas fa-search flex w-18 h-18 content-center text-center text-sidebar"></i> </a> - <a href="/{{ .Lang }}/map" class="toolbar-button w-fit h-fit" draggable="false"> + <a href="/{{ .Lang }}/map" class="themed-button themed-button-sidebar w-fit h-fit" draggable="false"> <i class="fas fa-map flex w-18 h-18 content-center text-center text-sidebar"></i> </a> - <div id="toolbar-theme-button" onclick="toggleThemeWheel();" class="toolbar-button w-fit h-fit" draggable="false"> + <div id="toolbar-theme-button" onclick="toggleThemeWheel();" class="themed-button themed-button-sidebar w-fit h-fit" draggable="false"> <i id="toolbar-theme-button-content" class="fas fa-swatchbook flex w-18 h-18 content-center text-center text-sidebar"></i> </div> - <a href="/{{ .Lang }}/user" id="sidebar-user-button" class="toolbar-button w-fit h-fit" draggable="false"> + <a href="/{{ .Lang }}/user" id="sidebar-user-button" class="themed-button themed-button-sidebar w-fit h-fit" draggable="false"> <i onclick="return changeUrl('/{{ .Lang }}/user');" class="fas fa-user flex w-18 h-18 content-center text-center text-sidebar"></i> </a> </div> |