summaryrefslogtreecommitdiff
path: root/src/components/ui/Background.astro
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/ui/Background.astro')
-rw-r--r--src/components/ui/Background.astro2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/ui/Background.astro b/src/components/ui/Background.astro
index 1093c17..f220487 100644
--- a/src/components/ui/Background.astro
+++ b/src/components/ui/Background.astro
@@ -6,6 +6,6 @@ export interface Props {
const { isDark = false } = Astro.props;
---
-<div class:list={['absolute inset-0', { 'bg-dark dark:bg-transparent': isDark }]}>
+<div class:list={['absolute inset-0', { 'bg-section dark:bg-dark': isDark }]}>
<slot />
</div>