Skip to content

Commit

Permalink
Fix media query description in magic-styled-components.mdx. (#403)
Browse files Browse the repository at this point in the history
  • Loading branch information
sweetliquid committed Jul 24, 2023
1 parent 7949a75 commit d213d97
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -40,7 +40,7 @@ Here's how the example above works:
- `default` is replaced by `theme.transitions.default`
- `emerald-500` is replaced by `theme.colors['emerald-500']`
- `#fff` is replaced by `theme.colors['#fff']`, that is not defined, so it uses `#fff` as value
- `@media (min-width: md)` is replaced by `@media (min-width: ${theme.screens.lg})`
- `@media (min-width: md)` is replaced by `@media (min-width: ${theme.screens.md})`
- `lg` is replaced by `theme.fontSizes.lg`

## Use another component
Expand Down

0 comments on commit d213d97

Please sign in to comment.