Skip to content

Commit

Permalink
Fix: 모바일 뷰에서 속성선택 버튼이 잘려보이는 문제 해결
Browse files Browse the repository at this point in the history
Fix: 모바일 뷰에서 속성선택 버튼이 잘려보이는 문제 해결
  • Loading branch information
BearHumanS authored Feb 23, 2024
2 parents 1e48bf8 + d244b68 commit a2111d3
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/components/plate/FilterPlates.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ const FilterPlates = () => {
return (
<div className={styles.wrapper}>
<AnimatePresence>
{isOpen && (
{isOpen ? (
<motion.div
initial="closed"
animate="open"
Expand All @@ -63,6 +63,8 @@ const FilterPlates = () => {
</motion.div>
</div>
</motion.div>
) : (
<div></div>
)}
</AnimatePresence>
<PlateHideButton isOpen={isOpen} setIsOpen={setIsOpen} />
Expand Down

0 comments on commit a2111d3

Please sign in to comment.