diff options
| author | 2025-10-21 09:25:01 +0700 | |
|---|---|---|
| committer | 2025-10-21 09:25:01 +0700 | |
| commit | 1e2763ae476e99caa7ba4be22aa06dfa2f7c8bb8 (patch) | |
| tree | ced28f3bf103c18905548ab093c58721ad931846 /views/pages/global-map.html | |
| parent | 64397d4d27c14427ee8cb8d5a7618058d04f3737 (diff) | |
| download | web-1e2763ae476e99caa7ba4be22aa06dfa2f7c8bb8.tar.gz web-1e2763ae476e99caa7ba4be22aa06dfa2f7c8bb8.zip | |
feat: lilac theme
feat: center content even if toolbar is on the side
Diffstat (limited to 'views/pages/global-map.html')
| -rw-r--r-- | views/pages/global-map.html | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/views/pages/global-map.html b/views/pages/global-map.html index cd3c2d5..b9d2472 100644 --- a/views/pages/global-map.html +++ b/views/pages/global-map.html @@ -22,7 +22,8 @@ case "olive": theme = "lettuce"; break; case "lettuce": theme = "night"; break; case "night": theme = "ram"; break; - case "ram": theme = "olive"; break; + case "ram": theme = "lilac"; break; + case "lilac": theme = "olive"; break; } } localStorage.setItem('theme', theme); @@ -62,6 +63,7 @@ <div class="theme-icon" data-theme="lettuce"></div> <div class="theme-icon" data-theme="night"></div> <div class="theme-icon" data-theme="ram"></div> + <div class="theme-icon" data-theme="lilac"></div> <div class="theme-pin"></div> </div> </div> |