Skip to content

Commit

Permalink
fix: set width auto on unselected equip
Browse files Browse the repository at this point in the history
  • Loading branch information
geoje committed Nov 16, 2024
1 parent 1838293 commit 7590a7a
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion frontend/src/pages/enhance/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,9 @@ export default function Enhance() {
<Config materialType={materialType} />
</BoardCard>
</Stack>
<Stack w={{ base: "100vw", md: "min-content" }}>
<Stack
w={{ base: "100vw", md: inventoryIndex == -1 ? "auto" : "min-content" }}
>
<BoardCard
order={5}
title="장비 변화"
Expand Down

0 comments on commit 7590a7a

Please sign in to comment.