Skip to content

Commit 0289ab6

Browse files
authored
fix: Fix assets layout (#5543)
## 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: 0000) - [ ] 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` file
1 parent 0116966 commit 0289ab6

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

apps/builder/app/builder/shared/assets/assets-shell.tsx

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,12 @@ export const AssetsShell = ({
181181
position: "relative",
182182
}}
183183
>
184-
<Flex css={{ padding: theme.panel.padding }} gap="2" wrap="wrap">
184+
<Flex
185+
css={{ padding: theme.panel.padding }}
186+
gap="2"
187+
wrap="wrap"
188+
shrink={false}
189+
>
185190
<SearchField
186191
css={{ flexGrow: 1 }}
187192
{...searchProps}

0 commit comments

Comments
 (0)