diff options
| author | 2025-08-03 00:41:35 +0700 | |
|---|---|---|
| committer | 2025-08-03 00:41:35 +0700 | |
| commit | f8dec847e0e4ea5bf473fff5949110f13ea5bc04 (patch) | |
| tree | 8212b2e17844451d68cf8e15d1001ebc31ddd43e /views | |
| parent | 95327ec0a4fa7f4067bfffe14327868aa2f0dae3 (diff) | |
| download | web-f8dec847e0e4ea5bf473fff5949110f13ea5bc04.tar.gz web-f8dec847e0e4ea5bf473fff5949110f13ea5bc04.zip | |
fix: gallery maximizing is now usable0.3.2
refactor: shrink mobile toolbar size from 10% to 8%
chore: make night theme a default one
Diffstat (limited to 'views')
| -rw-r--r-- | views/layouts/blog-page.html | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/views/layouts/blog-page.html b/views/layouts/blog-page.html index 1ceea4a..427f33e 100644 --- a/views/layouts/blog-page.html +++ b/views/layouts/blog-page.html @@ -24,7 +24,7 @@ </style> </head> -<body data-theme="olive" class="font-spectral text-main-dark overflow-hidden bg-interlocked-hexagons h-screen flex"> +<body data-theme="night" class="font-spectral text-main-dark overflow-hidden bg-interlocked-hexagons h-screen flex"> <script> function switchTheme(theme) { @@ -40,11 +40,11 @@ document.body.setAttribute('data-theme', theme); } - const savedTheme = localStorage.getItem('theme') || 'olive'; + const savedTheme = localStorage.getItem('theme') || 'night'; switchTheme(savedTheme); </script> - <div class="desktop-sidebar-custom fixed bg-squares-and-triangles bg-repeat flex-col items-center shadow-2xl z-20 h-screen desktop"> + <div class="desktop-sidebar-custom sticky bg-squares-and-triangles bg-repeat flex-col items-center shadow-2xl z-20 h-screen desktop"> <div class="logo-custom text-sidebar font-patua font-extrabold text-center relative z-20"> saya.today </div> @@ -56,7 +56,7 @@ </div> </div> - <div class="bg-background-dark z-10 h-screen desktop" style="padding-left: 5vw;"> + <div class="bg-background-dark z-10 h-screen desktop"> <div class="border-left-custom bg-background-dark"></div> <div class="content-square flex flex-col bg-background-dark relative mt-vmin1-6 mx-vmin1-6"> @@ -104,7 +104,7 @@ </div> </div> - <div class="bg-background-dark flex-row z-10 w-vw90 h-vh90 mobile" style="margin-left: 5vw; margin-top: 10vh;"> + <div class="bg-background-dark flex-row z-10 w-vw90 h-[92vh] mobile" style="margin-left: 5vw; margin-top: 8vh;"> <div class="border-left-custom bg-background-dark"></div> <div class="content-square flex flex-col bg-background-dark relative mt-vmin1-6 mx-vmin1-6"> |