Skip to content

Commit

Permalink
fix: correct the bg-color-from of the change make by accident
Browse files Browse the repository at this point in the history
  • Loading branch information
banahaker committed Jan 8, 2024
1 parent 1b53ad5 commit c9013ea
Showing 1 changed file with 12 additions and 8 deletions.
20 changes: 12 additions & 8 deletions app/styles/globals.scss
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

@import "./variables.scss";

$bg-color-from: #eed27e;
$bg-color-from: #ffe69b;
$bg-color-to: #82d7ff;

* {
Expand All @@ -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%;
Expand All @@ -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 {
Expand All @@ -60,4 +64,4 @@ body {
::-webkit-scrollbar-thumb {
border-radius: 5px;
background: $scrollbar-thumb-color;
}
}

0 comments on commit c9013ea

Please sign in to comment.