From a7d51d3c1b0c6d6f16af1a0be1efdf2e3a51f029 Mon Sep 17 00:00:00 2001 From: Siriwat K Date: Fri, 15 Mar 2024 09:38:22 +0700 Subject: [PATCH] Apply suggestions from code review Co-authored-by: Danilo Leal <67129314+danilo-leal@users.noreply.github.com> Signed-off-by: Siriwat K --- packages/pigment-css-react/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/pigment-css-react/README.md b/packages/pigment-css-react/README.md index 2172bd0bb13cb1..893b3c0a658bd8 100644 --- a/packages/pigment-css-react/README.md +++ b/packages/pigment-css-react/README.md @@ -371,7 +371,7 @@ const ExtraHeading = styled(Heading)({ #### Media and Container queries -All Pigment CSS APIs has built-in support for writing media queries and container queries. You can use the `@media` and `@container` keys to define the styles for different screen sizes and container sizes. +Pigment CSS APIs have built-in support for writing media queries and container queries. Use the `@media` and `@container` keys to define styles for different screen and container sizes. ```jsx import { css, styled } from '@pigment-css/react'; @@ -399,7 +399,7 @@ const Heading = styled('h1')({ > 💡 **Good to know**: > -> Pigment CSS uses emotion's serialize package behind the scene for turning tagged template and object to CSS string. +> Pigment CSS uses Emotion behind the scenes for turning tagged templates and objects into CSS strings. #### Typing props