Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[pigment-css][docs] Add media query guide #41473

Merged
merged 2 commits into from
Mar 18, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
52 changes: 50 additions & 2 deletions packages/pigment-css-react/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -299,7 +299,23 @@ const Button = styled('button')({

> 💡 This approach is recommended when the value of a prop is **unknown** ahead of time or possibly unlimited values, for example styling based on the user's input.

Use a callback function as a value to create a dynamic style for the specific CSS property:
There are two ways to acheive this (both involve using a CSS variable):

1. Declare a CSS variable directly in the styles and set its value using inline styles:

```jsx
const Heading = styled('h1')({
color: 'var(--color)',
});

function Heading() {
const [color, setColor] = React.useState('red');

return <Heading style={{ '--color': color }} />;
}
```

2. Use a callback function as a value to create a dynamic style for the specific CSS property:

```jsx
const Heading = styled('h1')({
Expand Down Expand Up @@ -347,12 +363,44 @@ This enables you to override the default `color` of the Heading component render

You can also export any styled component you create and use it as the base for additional components:

```tsx
```jsx
const ExtraHeading = styled(Heading)({
// ... overridden styled
});
```

#### 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.
siriwatknp marked this conversation as resolved.
Show resolved Hide resolved

```jsx
import { css, styled } from '@pigment-css/react';

const styles = css({
fontSize: '2rem',
'@media (min-width: 768px)': {
fontSize: '3rem',
},
'@container (max-width: 768px)': {
fontSize: '1.5rem',
},
});

const Heading = styled('h1')({
fontSize: '2rem',
'@media (min-width: 768px)': {
fontSize: '3rem',
},
'@container (max-width: 768px)': {
fontSize: '1.5rem',
},
});
```

> 💡 **Good to know**:
>
> Pigment CSS uses emotion's serialize package behind the scene for turning tagged template and object to CSS string.
siriwatknp marked this conversation as resolved.
Show resolved Hide resolved
siriwatknp marked this conversation as resolved.
Show resolved Hide resolved
siriwatknp marked this conversation as resolved.
Show resolved Hide resolved

#### Typing props

If you use TypeScript, add the props typing before the styles to get the type checking:
Expand Down
Loading