diff --git a/2025/src/components/Sessions/Session.astro b/2025/src/components/Sessions/Session.astro index 939f6973..fa16674e 100644 --- a/2025/src/components/Sessions/Session.astro +++ b/2025/src/components/Sessions/Session.astro @@ -11,8 +11,14 @@ type Props = { image_url?: string; }; -const { speaker_name, title, abstract, self_introduction, image_url } = - Astro.props; +const { + session_id, + speaker_name, + title, + abstract, + self_introduction, + image_url, +} = Astro.props; --- @@ -32,8 +38,13 @@ const { speaker_name, title, abstract, self_introduction, image_url } =
-

- {speaker_name} +

+ + {speaker_name} +

diff --git a/2025/src/styles/global.css b/2025/src/styles/global.css index c78fde6e..bfc8660a 100644 --- a/2025/src/styles/global.css +++ b/2025/src/styles/global.css @@ -8,6 +8,10 @@ body { font-family: Arial, Helvetica, sans-serif; } +html { + scroll-padding-top: calc(var(--spacing) * 16); +} + @layer utilities { .text-balance { text-wrap: balance;