Skip to content

Commit

Permalink
fix(web-domains): 손 흔들기 버튼 최대 너비 수정 (#155)
Browse files Browse the repository at this point in the history
  • Loading branch information
Doeunnkimm authored Aug 26, 2024
1 parent f66b6de commit 08e2fd4
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,9 @@ export const handWavingButtonCss = css({
// NOTE: 좌우 여백을 고려한 너비 계산
width: `calc(100% - ${size['2xs']} * 2)`,
bottom: size['2xs'],
left: size['2xs'],
left: '50%',
transform: 'translateX(-50%)',
maxWidth: `calc(600px - ${size['2xs']} * 2)`,
});

export const screenRootCss = css({
Expand Down

0 comments on commit 08e2fd4

Please sign in to comment.