Skip to content

Commit

Permalink
Update migrating-from-styled-components-to-stitches.mdx
Browse files Browse the repository at this point in the history
  • Loading branch information
Shubhdeep12 authored Oct 3, 2022
1 parent db3edff commit bbbbeee
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions data/blog/migrating-from-styled-components-to-stitches.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -54,10 +54,10 @@ const Button = styled.button`
// Stitches
const Button = styled('button', {
color: 'red',
fontSize: '14px';
fontSize: '14px',
'&:hover': {
color: 'black',
fontSize: '14px';
fontSize: '14px',
},
});
```
Expand Down

0 comments on commit bbbbeee

Please sign in to comment.