Skip to content

Commit

Permalink
style(front): adjusts gradient lengths
Browse files Browse the repository at this point in the history
  • Loading branch information
dgrebb committed Oct 11, 2023
1 parent fde8a27 commit 31a2291
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions front/src/lib/styles/base/theme.css
Original file line number Diff line number Diff line change
Expand Up @@ -102,9 +102,13 @@
35deg,
var(--bg-clr) 33%,
var(--bg-clr) 77%,
var(--sun) 150%
var(--sun) 180%
);
--rim-light-mask-bg: linear-gradient(
3deg,
var(--lemon-50) 95%,
var(--rim-clr)
);
--rim-light-mask-bg: linear-gradient(3deg, transparent, var(--rim-clr));
--category-rim-light-mask-bg: linear-gradient(
33deg,
transparent,
Expand Down Expand Up @@ -142,7 +146,7 @@
10deg,
transparent 0%,
var(--sunshine) 77%,
var(--sun) 123%
var(--sun) 153%
);
scrollbar-color: var(--violet-a30) transparent;
}
Expand Down Expand Up @@ -222,7 +226,9 @@
.privacy,
.post {
box-shadow: var(--shadow-elevation-low);
background: var(--rim-light-bg), var(--bg-clr);
background:
var(--rim-light-bg) 13%,
var(--bg-clr) 59%;
&::before {
background: var(--rim-light-mask-bg);
}
Expand Down

0 comments on commit 31a2291

Please sign in to comment.