From bbbbeee46a4bb4b7ca332a5e338ef72cf7ad32d8 Mon Sep 17 00:00:00 2001 From: Shubhdeep Chhabra Date: Mon, 3 Oct 2022 19:56:54 +0530 Subject: [PATCH] Update migrating-from-styled-components-to-stitches.mdx --- data/blog/migrating-from-styled-components-to-stitches.mdx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/data/blog/migrating-from-styled-components-to-stitches.mdx b/data/blog/migrating-from-styled-components-to-stitches.mdx index 41164cc..4f571d1 100644 --- a/data/blog/migrating-from-styled-components-to-stitches.mdx +++ b/data/blog/migrating-from-styled-components-to-stitches.mdx @@ -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', }, }); ```