Skip to content

Commit

Permalink
Fix typo in the css-prop.mdx (#3155)
Browse files Browse the repository at this point in the history
  • Loading branch information
georgekaran committed May 2, 2024
1 parent f4640f6 commit ac9013f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions docs/css-prop.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
```
Expand All @@ -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;
}
Expand Down

0 comments on commit ac9013f

Please sign in to comment.