From c9013ea18340cf15ee542f7fb51b84e9a392cba0 Mon Sep 17 00:00:00 2001
From: banahaker <pn0818x@outlook.com>
Date: Mon, 8 Jan 2024 23:40:41 +0800
Subject: [PATCH] fix: correct the bg-color-from of the change make by accident

---
 app/styles/globals.scss | 20 ++++++++++++--------
 1 file changed, 12 insertions(+), 8 deletions(-)

diff --git a/app/styles/globals.scss b/app/styles/globals.scss
index 8bf5654..a4da667 100644
--- a/app/styles/globals.scss
+++ b/app/styles/globals.scss
@@ -6,7 +6,7 @@
 
 @import "./variables.scss";
 
-$bg-color-from: #eed27e;
+$bg-color-from: #ffe69b;
 $bg-color-to: #82d7ff;
 
 * {
@@ -28,9 +28,11 @@ body {
 
   width: 100dvw;
   height: 100dvh;
-  background: radial-gradient(90% 90% at 0% 0%,
-      $bg-color-from 0%,
-      $bg-color-to 100%);
+  background: radial-gradient(
+    90% 90% at 0% 0%,
+    $bg-color-from 0%,
+    $bg-color-to 100%
+  );
 
   display: grid;
   grid-template-rows: 15% 70% 15%;
@@ -42,9 +44,11 @@ body {
 
   width: 100dvw;
   height: 100dvh;
-  background: radial-gradient(90% 90% at 0% 0%,
-      $bg-color-from 0%,
-      $bg-color-to 100%);
+  background: radial-gradient(
+    90% 90% at 0% 0%,
+    $bg-color-from 0%,
+    $bg-color-to 100%
+  );
 }
 
 ::-webkit-scrollbar {
@@ -60,4 +64,4 @@ body {
 ::-webkit-scrollbar-thumb {
   border-radius: 5px;
   background: $scrollbar-thumb-color;
-}
\ No newline at end of file
+}