| author | 2026-01-06 15:56:18 +0700 | |
|---|---|---|
| committer | 2026-01-06 15:56:18 +0700 | |
| commit | 6983adfc3a93c06236be29fb17bfc734e622ec9d (patch) | |
| tree | 5ac0adb1b61540fafddf9a987226266474fff5a0 /views/pages/blog-catalogue.html | |
| parent | 650dcbfb438e2599af6b37b5821088e1de77c1cb (diff) | |
| download | web-6983adfc3a93c06236be29fb17bfc734e622ec9d.tar.gz web-6983adfc3a93c06236be29fb17bfc734e622ec9d.zip | |
fix: inset shadow getting overlapped by child elements
Diffstat (limited to 'views/pages/blog-catalogue.html')
| -rw-r--r-- | views/pages/blog-catalogue.html | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/views/pages/blog-catalogue.html b/views/pages/blog-catalogue.html index d209205..c0c72b9 100644 --- a/views/pages/blog-catalogue.html +++ b/views/pages/blog-catalogue.html @@ -52,10 +52,14 @@ <div class="w-[0.5dvh] border-r-2 border-dotted border-main-hard bg-background-dark"></div> - <div hx-get="/api/v1/blog-search" hx-vals='js:{lang: "{{ .Lang }}", tz: clientTimeZone}' hx-target="this" hx-swap="innerHTML" hx-trigger="load" hx-include=".tags-list" - class="blog-cards grow flex flex-col overflow-y-auto bg-background-light inset-shadow-[0_0_0.4rem_black] p-6"> - Loading... + <div class="relative flex grow h-full"> + <div class="absolute w-full h-full inset-0 inset-shadow-[0_0_0.4rem_black] pointer-events-none z-20"></div> + <div hx-get="/api/v1/blog-search" hx-vals='js:{lang: "{{ .Lang }}", tz: clientTimeZone}' hx-target="this" hx-swap="innerHTML" hx-trigger="load" hx-include=".tags-list" + class="blog-cards relative grow flex flex-col overflow-y-auto bg-background-light p-6"> + Loading... + </div> </div> + </div> <script> |