Skip to content

Commit

Permalink
UI splash Radial
Browse files Browse the repository at this point in the history
  • Loading branch information
nicedexter committed Jun 2, 2020
1 parent 62e8cef commit d6581e5
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion src/components/UI/Splash.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,13 @@ import HelpButton from './HelpButton';

const ContentBox = styled.div`
height: 100vh;
background-color: #181818;
background: rgb(36, 36, 36);
background: radial-gradient(
circle,
rgba(36, 36, 36, 1) 0%,
rgba(51, 51, 51, 1) 32%,
rgba(34, 34, 34, 1) 100%
);
display: flex;
flex-direction: column;
Expand Down

0 comments on commit d6581e5

Please sign in to comment.