More consistent shadow on about image
All checks were successful
Build and Deploy to Web Server / deploy (push) Successful in 9m25s

This commit is contained in:
2025-09-08 16:05:50 +09:30
parent 5c5a7524ab
commit 6542cb42a2
4 changed files with 7 additions and 4 deletions

View File

@@ -13,7 +13,7 @@ const { navbarDisplay = "normal" } = Astro.props as Props;
--- ---
<nav <nav
class="font-header group/nav fixed top-0 right-0 left-0 z-50 uppercase" class="font-header group/nav fixed top-0 right-0 left-0 z-100 uppercase"
aria-label="Primary" aria-label="Primary"
transition:name="nav" transition:name="nav"
transition:animate="none" transition:animate="none"

View File

@@ -38,7 +38,10 @@ const initialQueue = await Promise.all(
<div <div
id="player" id="player"
class:list={["fixed right-0 bottom-0 left-0 z-50 bg-black shadow-lg", height]} class:list={[
"fixed right-0 bottom-0 left-0 z-100 bg-black shadow-lg",
height
]}
transition:persist="" transition:persist=""
transition:name="player" transition:name="player"
transition:animate="none" transition:animate="none"

View File

@@ -18,7 +18,7 @@ import { Image } from "astro:assets";
<Image <Image
src={aboutImage} src={aboutImage}
alt="A photo of Nathan conducting the Woodville Concert Band" alt="A photo of Nathan conducting the Woodville Concert Band"
class="mx-auto mb-8 size-96 rounded-full object-cover drop-shadow-lg/75 transition ease-in-out md:hover:scale-150 md:hover:shadow-xl/50" class="mx-auto mb-8 size-96 rounded-full object-cover shadow-lg/75 transition ease-in-out md:hover:scale-150"
transition:name="aboutImage" transition:name="aboutImage"
height={576} height={576}
/> />

View File

@@ -92,7 +92,7 @@ const tracks = (
<Image <Image
src={aboutImage} src={aboutImage}
alt="Nathan conducting the Woodville Concert Band" alt="Nathan conducting the Woodville Concert Band"
class="mx-auto mt-8 size-96 rounded-full object-cover drop-shadow-lg/75 transition ease-in-out md:hover:scale-150 md:hover:shadow-xl/50" class="mx-auto mt-8 size-96 rounded-full object-cover shadow-lg/75 transition ease-in-out md:hover:scale-150"
transition:name="aboutImage" transition:name="aboutImage"
height={576} height={576}
/> />