Skip to content

Commit

Permalink
fix: Fix breakpoints editor layout (#3345)
Browse files Browse the repository at this point in the history
## Description

1. What is this PR about (link the issue and add a short description)

## Steps for reproduction

1. click button
2. expect xyz

## Code Review

- [ ] hi @kof, I need you to do
  - conceptual review (architecture, feature-correctness)
  - detailed review (read every line)
  - test it on preview

## Before requesting a review

- [ ] made a self-review
- [ ] added inline comments where things may be not obvious (the "why",
not "what")

## Before merging

- [ ] tested locally and on preview environment (preview dev login:
5de6)
- [ ] updated [test
cases](https://github.com/webstudio-is/webstudio/blob/main/apps/builder/docs/test-cases.md)
document
- [ ] added tests
- [ ] if any new env variables are added, added them to `.env.example`
and the `builder/env-check.js` if mandatory
  • Loading branch information
kof authored May 12, 2024
1 parent 520ee94 commit 8aca480
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ const BreakpointEditorItem = ({
<Flex gap="2" css={{ width: theme.spacing[26] }}>
<Select
name="type"
css={{ width: theme.spacing[21] }}
css={{ width: theme.spacing[28] }}
options={["maxWidth", "minWidth"]}
getLabel={(option) =>
option === "maxWidth" ? "Max Width" : "Min Width"
Expand Down

0 comments on commit 8aca480

Please sign in to comment.