From 2f278d5281415a012f51ca46600c2958179e3ca3 Mon Sep 17 00:00:00 2001 From: Mathias Wagner Date: Mon, 17 Apr 2023 22:11:17 +0200 Subject: [PATCH] Created the root.sass --- src/common/styles/root.sass | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 src/common/styles/root.sass diff --git a/src/common/styles/root.sass b/src/common/styles/root.sass new file mode 100644 index 0000000..7c72e8f --- /dev/null +++ b/src/common/styles/root.sass @@ -0,0 +1,15 @@ +@import "colors" + +$ball1: radial-gradient($blurred-blue, transparent, transparent 40rem) bottom -15rem left -20rem / 50rem 50rem +$ball2: radial-gradient($blurred-blue, transparent, transparent 70rem) top -35em center / 70rem 70rem +$ball3: radial-gradient($blurred-blue, transparent, transparent 60rem) bottom -25em right -20rem / 60rem 60rem + +body, html + margin: 0 + padding: 0 + min-height: 100vh + background: no-repeat $ball1, no-repeat $ball2, no-repeat $ball3, $background + +@media (max-width: 873px) + body, html + background-size: 0 0 \ No newline at end of file