Skip to content

Instantly share code, notes, and snippets.

Created March 2, 2018 20:13
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/78967686c6eddf865b955815d5db65fa to your computer and use it in GitHub Desktop.
Save anonymous/78967686c6eddf865b955815d5db65fa to your computer and use it in GitHub Desktop.
const rotate360 = keyframes`
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
`
const AppLogo = styled.img`
animation: ${rotate360} infinite 120s linear;
height: 80px;
`
const AppHeader = styled.div`
background-color: #222;
height: 150px;
padding: 20px;
color: white;
`
const AppTitle = styled.h1`
font-size: 1.3em;
`
const AppIntro = styled.p`
font-size: large;
`
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment