Skip to content

Commit

Permalink
Merge pull request #121 from Shubhdeep12/patch-1
Browse files Browse the repository at this point in the history
Update migrating-from-styled-components-to-stitches.mdx
  • Loading branch information
hadihallak authored Oct 3, 2022
2 parents db3edff + bbbbeee commit 2c16c0b
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

1 comment on commit 2c16c0b

@vercel
Copy link

@vercel vercel bot commented on 2c16c0b Oct 3, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

stitches-site – ./

stitches-site.modulz-deploys.com
stitches-site-git-master.modulz-deploys.com
www.stitches.dev
stitches.dev

Please sign in to comment.