diff options
| author | Ariel Costas Guerrero <ariel@costas.dev> | 2025-06-07 17:45:09 +0200 |
|---|---|---|
| committer | Ariel Costas Guerrero <ariel@costas.dev> | 2025-06-07 17:45:09 +0200 |
| commit | c844e55e935809c9e28ce6d92d58b3f383a15631 (patch) | |
| tree | b94e6290f29d97cd95fe86012e863c093ea62fe4 | |
| parent | 896571d83834cacdca6eb2ae066e561bf6331cf1 (diff) | |
Improve background gradient
| -rw-r--r-- | src/layouts/Layout.astro | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/layouts/Layout.astro b/src/layouts/Layout.astro index b546904..d23d212 100644 --- a/src/layouts/Layout.astro +++ b/src/layouts/Layout.astro @@ -112,7 +112,8 @@ const { title, description, empty } = Astro.props; background: linear-gradient( to bottom, #ffffff 0%, - color.adjust($background, $lightness: -5%) 3rem, + color.adjust($background, $lightness: -2%) 6rem, + color.adjust($background, $lightness: -5%) 12rem, color.adjust($background, $lightness: -5%) 88%, color.adjust($backgroundDarker, $lightness: -5%) 100% ); |
