Skip to content
Merged
Changes from all commits
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
11 changes: 8 additions & 3 deletions apps/landing/src/app/(detail)/docs/devup/breakpoints/page.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -8,20 +8,25 @@ export const metadata = {

# Breakpoints

You can add responsive design by using an array of maximum 5 elements. The viewport ranges of each style
You can add responsive design by using an array of maximum 6 elements. The viewport ranges of each style
value in the array are listed below:

- 1st element: ~ 479px,
- 2nd element: 480px ~ 767px,
- 3rd element: 768px ~ 991px,
- 4th element: 992px ~ 1279px,
- 5th element: 1280px ~
- 5th element: 1280px ~ 1599px,
- 6th element : 1600px ~

## How to use

```tsx
const box = (
<Box bg={['red', 'blue', 'green', 'yellow', 'purple']} h={25} w={25}>
<Box
bg={['red', 'blue', 'green', 'yellow', 'purple', 'orange']}
h={25}
w={25}
>
<Text>Hello</Text>
</Box>
)
Expand Down