From b9d5265b36abe50bc4a900f4a65cac515c8a2883 Mon Sep 17 00:00:00 2001 From: JJ Kasper Date: Mon, 19 Jul 2021 18:52:57 -0500 Subject: [PATCH] Continue: fix typo in breakpoint config --- examples/with-stitches/stitches.config.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/with-stitches/stitches.config.js b/examples/with-stitches/stitches.config.js index 3bc8caae2246d..8ac30de600dca 100644 --- a/examples/with-stitches/stitches.config.js +++ b/examples/with-stitches/stitches.config.js @@ -67,7 +67,7 @@ export const { css, styled, global, getCssString } = createCss({ }), }, media: { - bp1: '@media (min-width: 520px)', - bp2: '@media (min-width: 900px)', + bp1: '(min-width: 520px)', + bp2: '(min-width: 900px)', }, })