Skip to content

Commit

Permalink
fix: 손 흔들기 버튼 위치 및 여백 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
Doeunnkimm committed Aug 25, 2024
1 parent 54a01fb commit 8d7b5f1
Showing 1 changed file with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,11 @@ export const answerContentCss = css({
});

export const handWavingButtonCss = css({
position: 'absolute',
bottom: size['xl'],
position: 'fixed',
// NOTE: 좌우 여백을 고려한 너비 계산
width: `calc(100% - ${size['2xs']} * 2)`,
bottom: size['2xs'],
left: size['2xs'],
});

export const screenRootCss = css({
Expand Down

0 comments on commit 8d7b5f1

Please sign in to comment.