From 8805fbf30a2c26208aaf6d29ee53586f2dbf6cce Mon Sep 17 00:00:00 2001 From: Chris Swithinbank Date: Sun, 4 Jun 2023 20:55:56 +0200 Subject: Add box-shadow to prev/next page links as per designs --- .changeset/rare-olives-hang.md | 5 +++++ packages/starlight/components/PrevNextLinks.astro | 1 + 2 files changed, 6 insertions(+) create mode 100644 .changeset/rare-olives-hang.md diff --git a/.changeset/rare-olives-hang.md b/.changeset/rare-olives-hang.md new file mode 100644 index 00000000..b2da029c --- /dev/null +++ b/.changeset/rare-olives-hang.md @@ -0,0 +1,5 @@ +--- +"@astrojs/starlight": patch +--- + +Add box-shadow to prev/next page links as per designs diff --git a/packages/starlight/components/PrevNextLinks.astro b/packages/starlight/components/PrevNextLinks.astro index 76847f91..fe6329a3 100644 --- a/packages/starlight/components/PrevNextLinks.astro +++ b/packages/starlight/components/PrevNextLinks.astro @@ -61,6 +61,7 @@ const t = useTranslations(locale); padding: 1rem; text-decoration: none; color: var(--sl-color-gray-2); + box-shadow: var(--sl-shadow-md); } [rel='next'] { justify-content: end; -- cgit