diff options
| author | 2026-01-06 15:56:18 +0700 | |
|---|---|---|
| committer | 2026-01-06 15:56:18 +0700 | |
| commit | 6983adfc3a93c06236be29fb17bfc734e622ec9d (patch) | |
| tree | 5ac0adb1b61540fafddf9a987226266474fff5a0 /views/pages/user-page.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/user-page.html')
| -rw-r--r-- | views/pages/user-page.html | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/views/pages/user-page.html b/views/pages/user-page.html index 7d39825..fda7e66 100644 --- a/views/pages/user-page.html +++ b/views/pages/user-page.html @@ -1,5 +1,6 @@ {{ define "body" }} -<div class="bg-background-light flex flex-col inset-shadow-[0_0_0.4rem_black] px-8 py-4"> +<div class="absolute w-full h-full inset-0 inset-shadow-[0_0_0.4rem_black] pointer-events-none z-20"></div> +<div class="relative bg-background-light flex flex-col px-8 py-4"> <form id="email-form" class="w-full mb-2 flex flex-col relative crossable" hx-get="/api/v1/email/is-in-verification" hx-target="#email-message" hx-swap="outerHTML" hx-trigger="load" hx-indicator="this"> <div class="flex flex-row w-full mb-4 z-21"> |