Skip to content

Instantly share code, notes, and snippets.

@wilsonjuniordeveloper
Created December 28, 2019 20:57
Show Gist options
  • Save wilsonjuniordeveloper/4dfa3d58ad9f568611a942e7e3ec3931 to your computer and use it in GitHub Desktop.
Save wilsonjuniordeveloper/4dfa3d58ad9f568611a942e7e3ec3931 to your computer and use it in GitHub Desktop.
import styled from "styled-components";
export const Container = styled.div`
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
`;
export const Input = styled.input`
padding: 10px;
width: 350px;
height: 40px;
border: none;
background: #ecf0f1;
border-radius: 3px;
margin: 5px;
`;
export const Button = styled.button`
padding: 10px;
width: 360px;
height: 50px;
border: none;
border-radius: 8px;
background: ${props => props.primary ? "palevioletred" : "#9b59b6" };;
color: #fff;
margin: 10px;
font-weight: bold;
`;
export const Title = styled.p`
font-weight: bold;
color: #9b59b6;
font-size: 22px;
`
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment