From bb63132c7ab2da47ceff7241becd1bbcd95df7bd Mon Sep 17 00:00:00 2001 From: liyunze <50455574+liyunze-coding@users.noreply.github.com> Date: Fri, 22 Dec 2023 11:02:22 +0800 Subject: [PATCH] added dots to main background --- src/layouts/Layout.astro | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/layouts/Layout.astro b/src/layouts/Layout.astro index 1c65e23..c989e30 100644 --- a/src/layouts/Layout.astro +++ b/src/layouts/Layout.astro @@ -128,7 +128,9 @@ const { title } = Astro.props; body { font-family: "Montserrat", sans-serif; - background: #202020; color: #fff; + background: radial-gradient(circle, #383838 1px, transparent 1px), + #202020; + background-size: 20px 20px; }