fix gradients

This commit is contained in:
Primakov Alexandr Alexandrovich 2022-11-29 19:52:04 +03:00
parent 7e265d1e2d
commit 4420c697ad
2 changed files with 7 additions and 7 deletions

View File

@ -20,19 +20,19 @@ const App = () => {
background: radial-gradient(
farthest-side at bottom left,
rgba(35, 235, 4, 0.709),
transparent 65%
rgba(255, 255, 255, 0) 65%
),
radial-gradient(
farthest-corner at bottom center,
rgba(244, 244, 8, 0.6),
transparent 40%
rgba(255, 255, 255, 0) 40%
),
radial-gradient(
farthest-side at bottom right,
rgba(0, 195, 255, 0.648),
transparent 65%
rgba(255, 255, 255, 0) 65%
);
height: 100vh;
height: 100%;
/* font-family: "SB Sans Screen"; */
font-family: "SBSansScreenRegular";
}

View File

@ -238,17 +238,17 @@ export const CircleDiv = styled.div`
background: radial-gradient(
farthest-side at bottom center,
rgba(35, 235, 4, 0.709),
rgba(0, 0, 0, 0) 65%
rgba(255, 255, 255, 0) 65%
),
radial-gradient(
farthest-corner at bottom left,
rgba(244, 244, 8, 0.9),
rgba(0, 0, 0, 0) 40%
rgba(255, 255, 255, 0) 40%
),
radial-gradient(
farthest-side at bottom right,
rgba(0, 195, 255, 0.648),
rgba(0, 0, 0, 0) 65%
rgba(255, 255, 255, 0) 65%
);
`;