From ac9013f009194e0d01c4b9881362a31e935a2f41 Mon Sep 17 00:00:00 2001 From: George Karan Date: Thu, 2 May 2024 00:54:37 -0400 Subject: [PATCH] Fix typo in the css-prop.mdx (#3155) --- docs/css-prop.mdx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/css-prop.mdx b/docs/css-prop.mdx index 2fc404c9f..20dfb1811 100644 --- a/docs/css-prop.mdx +++ b/docs/css-prop.mdx @@ -241,8 +241,8 @@ The styles are concatenated together and inserted via `insertRule`. ```css .css-2 { - font-size: 14px, - font-family: Georgia, serif, + font-size: 14px; + font-family: Georgia, serif; color: darkgray; } ``` @@ -264,8 +264,8 @@ The styles are concatenated together and inserted via `insertRule`. + line-height: 1.5; - font-family: 'sans-serif'; - color: black; -- font-size: 14px, -+ font-family: Georgia, serif, +- font-size: 14px; ++ font-family: Georgia, serif; + color: darkgray; + font-size: 10px; }