Skip to content

Commit

Permalink
style: 체크표시되면 테두리가 사라지면서 글자 위치가 변경되는 버그 수정 (#12)
Browse files Browse the repository at this point in the history
  • Loading branch information
ddhelop committed Oct 28, 2024
1 parent c7361b5 commit 714fafe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/features/onBoarding/components/OnBoardingAgree.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ export default function OnBoardingAgree() {
<div onClick={() => handleCheckClick(index)} className="flex cursor-pointer items-center gap-6">
<div
className={`rounded-[0.6rem] border border-grey40 p-[0.54rem] ${
checkedItems[index] ? 'border-none bg-[#D3E1FE]' : ''
checkedItems[index] ? 'border-transparent bg-[#D3E1FE]' : ''
}`}
>
<Image
Expand Down

0 comments on commit 714fafe

Please sign in to comment.