Skip to content

Commit 93070ee

Browse files
authored
Merge pull request #207 from DevKor-github/fix/#203/header-back
fix: header 뒤로가기 크기 통일
2 parents fa754af + 5b5cd2a commit 93070ee

5 files changed

Lines changed: 5 additions & 5 deletions

File tree

src/common/components/CustomHeader/style.css.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ export const backBtn = css({
1515
color: '80',
1616
flexShrink: '1',
1717
aspectRatio: '1/1',
18-
fontSize: '1.65rem',
18+
fontSize: '1.625rem',
1919
});
2020

2121
export const headerText = css({

src/features/chatRoom/components/ChatRoomLayout/ChatRoomHeader/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ const ChatRoomHeader = ({ appointmentData, chatRoomData }: Props) => {
2626
return (
2727
<header className={s.Wrapper}>
2828
<div className={s.Container}>
29-
<button className={`mgc_left_fill ${s.BackBtn}`} onClick={goBack}></button>
29+
<button className={`mgc_left_line ${s.BackBtn}`} onClick={goBack}></button>
3030
<div className={s.UserInfo}>
3131
<UserProfileImage nickname={nickname} src={profileImg} />
3232
<div className={s.Verifiy}>

src/features/detail/components/DetailHeader/style.css.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ export const Container = css({
2626
});
2727

2828
export const BackButton = css({
29-
fontSize: '2.25rem',
29+
fontSize: '1.625rem',
3030
cursor: 'pointer',
3131
pointerEvents: 'auto',
3232
});

src/features/home/components/SearchBox/style.css.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ export const Container = css({
1212

1313
export const BackButton = css({
1414
color: 'systemGray',
15-
fontSize: '2.25rem',
15+
fontSize: '1.625rem',
1616
flexShrink: 0,
1717
});
1818

src/pages/LoginPage/style.css.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ export const Header = css({
2525
pointerEvents: 'none',
2626
'& button': {
2727
color: '100',
28-
fontSize: '2.25rem',
28+
fontSize: '1.625rem',
2929
cursor: 'pointer',
3030
pointerEvents: 'auto',
3131
},

0 commit comments

Comments
 (0)