amycommits / react-typescript-challenge

created for a tech assessment
0 stars 0 forks source link

Add a style for the information so that it looks like the mockup #3

Open amycommits opened 3 years ago

amycommits commented 3 years ago

const Button = styled.button color: palevioletred; font-size: 1em; margin: 1em; padding: 0.25em 1em; border: 2px solid palevioletred; border-radius: 3px; ;

// A new component based on Button, but with some override styles const TomatoButton = styled(Button) color: tomato; border-color: tomato; ;

Screen Shot 2020-10-24 at 12 28 06 PM