Skip to content

Commit df82f29

Browse files
fix(site): improve filter on smaller screens (#7899)
1 parent 2a5025c commit df82f29

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

site/src/components/Filter/filter.tsx

+8-1
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,14 @@ export const Filter = ({
154154
}, [filter.query])
155155

156156
return (
157-
<Box display="flex" sx={{ gap: 1, mb: 2 }}>
157+
<Box
158+
sx={{
159+
display: "flex",
160+
flexWrap: ["wrap", undefined, "nowrap"],
161+
gap: 1,
162+
mb: 2,
163+
}}
164+
>
158165
{isLoading ? (
159166
skeleton
160167
) : (

0 commit comments

Comments
 (0)