Skip to content

Commit

Permalink
Merge pull request #268 from mash-up-kr/fix/dialog-hover
Browse files Browse the repository at this point in the history
Fix: safari 환경에서 dialog hover시 ui가 무너지는 버그에 대응한다
  • Loading branch information
HaJunRyu authored Jan 29, 2024
2 parents 7d7987f + 955f352 commit 75d9431
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -153,6 +153,7 @@ export const CancelButton = styled.button`
${({ theme }) => css`
${theme.fonts.kr.medium16};
position: relative;
display: flex;
padding: 1.3rem 2rem;
color: ${theme.colors.gray80};
white-space: nowrap;
Expand Down Expand Up @@ -196,6 +197,7 @@ export const ApprovalButton = styled.button`
${({ theme }) => css`
${theme.fonts.kr.medium16};
position: relative;
display: flex;
margin-left: 1.2rem;
padding: 1.3rem 2rem;
color: ${theme.colors.white};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,7 @@ export const CancelButton = styled.button`
${({ theme }) => css`
${theme.fonts.kr.medium16};
position: relative;
display: flex;
padding: 1.3rem 2rem;
color: ${theme.colors.gray80};
letter-spacing: -0.08rem;
Expand Down Expand Up @@ -166,6 +167,7 @@ export const ApprovalButton = styled.button`
${({ theme }) => css`
${theme.fonts.kr.medium16};
position: relative;
display: flex;
margin-left: 1.2rem;
padding: 1.3rem 2rem;
color: ${theme.colors.white};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@ export const ApprovalButton = styled.button`
${({ theme }) => css`
${theme.fonts.kr.medium16};
position: relative;
display: flex;
margin-left: 1.2rem;
padding: 1.3rem 2rem;
color: ${theme.colors.white};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,7 @@ export const CancelButton = styled.button`
${({ theme }) => css`
${theme.fonts.kr.medium16};
position: relative;
display: flex;
padding: 1.3rem 2rem;
color: ${theme.colors.gray80};
letter-spacing: -0.08rem;
Expand Down Expand Up @@ -113,6 +114,7 @@ export const ApprovalButton = styled.button`
${({ theme }) => css`
${theme.fonts.kr.medium16};
position: relative;
display: flex;
margin-left: 1.2rem;
padding: 1.3rem 2rem;
color: ${theme.colors.white};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,7 @@ export const LinkCopyButton = styled.button`
${({ theme }) => css`
${theme.fonts.kr.medium16};
position: relative;
display: flex;
padding: 1.3rem 2rem;
color: ${theme.colors.gray80};
letter-spacing: -0.08rem;
Expand Down Expand Up @@ -115,6 +116,7 @@ export const CloseButton = styled.button`
${({ theme }) => css`
${theme.fonts.kr.medium16};
position: relative;
display: flex;
margin-left: 1.2rem;
padding: 1.3rem 2rem;
color: ${theme.colors.white};
Expand Down

0 comments on commit 75d9431

Please sign in to comment.