From f5615a5b00aa2310e162488dd84303de074f6876 Mon Sep 17 00:00:00 2001 From: pml68 Date: Tue, 16 Jan 2024 18:25:21 +0100 Subject: feat: remove test square, add waves for the top corners --- src/app.scss | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) (limited to 'src/app.scss') diff --git a/src/app.scss b/src/app.scss index d60437a..a8669f5 100644 --- a/src/app.scss +++ b/src/app.scss @@ -8,6 +8,8 @@ body { background-color: #1e1e2e; color: #a6fbb2; font-family: 'Rubik', sans-serif; + width: 100%; + overflow: hidden; } .ii { @@ -31,3 +33,20 @@ body { width: 100%; z-index: 100; } + +.wave { + position: absolute; + top: 0; + max-width: 100vw; + max-height: 100vh; +} + +.wave1 { + left: 0; + transform: rotate(-45deg) translate(-30%, -80%); +} + +.wave2 { + right: 0; + transform: rotate(45deg) translate(50%, -90%); +} -- cgit v1.2.3