Skip to content

Instantly share code, notes, and snippets.

@timothyde
Last active May 31, 2019 15:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save timothyde/e605611d641ac2ce8f88f53e256a559c to your computer and use it in GitHub Desktop.
Save timothyde/e605611d641ac2ce8f88f53e256a559c to your computer and use it in GitHub Desktop.
const Cover = styled.div`
background-color: white;
z-index: 100;
position: absolute;
border-radius: 8px;
height: 80px;
width: 90%;
transform-origin: bottom center;
`;
const TopBar = styled.div`
background-color: white;
z-index: 0;
position: absolute;
border-radius: 8px 8px 0px 0px;
top: 8px;
height: 40px;
width: 90%;
`;
const Main = styled.div`
background-color: white;
z-index: 0;
position: absolute;
top: 48px;
height: 240px;
width: 90%;
transform-origin: top center;
`;
const Actions = styled.div`
background-color: white;
z-index: 0;
position: absolute;
border-radius: 0 0 8px 8px;
top: 288px;
height: 160px;
width: 90%;
transform-origin: top center;
`;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment