diff --git a/src/components/BaseFooter.astro b/src/components/BaseFooter.astro index ad9f3c7..46bdaca 100644 --- a/src/components/BaseFooter.astro +++ b/src/components/BaseFooter.astro @@ -32,7 +32,7 @@ :global(.dark) footer { background: var(--background); - box-shadow: rgba(255, 255, 255, .3) 0px -1px 3px 0px; + box-shadow: none; } :global(.dark) .content { diff --git a/src/components/BaseHeader.astro b/src/components/BaseHeader.astro index 472e16d..aa9e6ac 100644 --- a/src/components/BaseHeader.astro +++ b/src/components/BaseHeader.astro @@ -84,7 +84,7 @@ import ThemeIcon from './ThemeIcon.astro' :global(.dark) header { background: var(--background); - box-shadow: rgba(255, 255, 255, .3) 0px 1px 2px 0px; + box-shadow: none; } :global(.dark) .main-nav h1 { diff --git a/src/components/PostList.astro b/src/components/PostList.astro index a57e4da..daae167 100644 --- a/src/components/PostList.astro +++ b/src/components/PostList.astro @@ -151,7 +151,7 @@ posts.map((post) => { } :global(.dark) .post { - background: #1f2937; + background: #171717; } :global(.dark) .published-at { @@ -159,6 +159,7 @@ posts.map((post) => { } :global(.dark) .category-name { - background: #374151; + background: #e5e5e5; + color: #0a0a0a; } diff --git a/src/pages/posts/[...slug].astro b/src/pages/posts/[...slug].astro index e71701c..f745169 100644 --- a/src/pages/posts/[...slug].astro +++ b/src/pages/posts/[...slug].astro @@ -26,49 +26,60 @@ const published_at = formatDatetime(data.published_at, 'YYYY 年 M 月 D 日') --- -

{data.title}

+
+

{data.title}

-