Skip to content

Commit 1ecb409

Browse files
committed
chore: deploy web (#develop)
1 parent 7ae0ffe commit 1ecb409

File tree

8 files changed

+24
-10
lines changed

8 files changed

+24
-10
lines changed

services/ahhachul.com/src/assets/icons/system/index.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,18 @@
1+
export { default as LogoIcon } from './logo.svg?react';
2+
13
export { default as DotIcon } from './ic_dot.svg?react';
24
export { default as MicIcon } from './ic_mic.svg?react';
35
export { default as BellIcon } from './ic_bell.svg?react';
46
export { default as ListIcon } from './ic_list.svg?react';
57
export { default as TalkIcon } from './ic_talk.svg?react';
68
export { default as InfoIcon } from './ic_info.svg?react';
7-
export { default as LogoIcon } from './ic_logo.svg?react';
89
export { default as HomeIcon } from './ic_home.svg?react';
910
export { default as PlusIcon } from './ic_plus.svg?react';
1011
export { default as RetryIcon } from './ic_retry.svg?react';
1112
export { default as ShareIcon } from './ic_share.svg?react';
1213
export { default as CloseIcon } from './ic_close.svg?react';
1314
export { default as CheckIcon } from './ic_check.svg?react';
15+
export { default as LogoTextIcon } from './ic_logo.svg?react';
1416
export { default as SearchIcon } from './ic_search.svg?react';
1517
export { default as PictureIcon } from './ic_picture.svg?react';
1618
export { default as WarningIcon } from './ic_warning.svg?react';
Lines changed: 9 additions & 0 deletions
Loading

services/ahhachul.com/src/components/common/readOnlyEditor/ReadOnlyEditor.styled.tsx

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,8 @@ export const EditorContainer = styled.div`
44
width: 100%;
55
padding: 20px;
66
position: relative;
7+
8+
& > div > div > p {
9+
font-size: 13px;
10+
}
711
`;

services/ahhachul.com/src/components/domain/auth/centerFixedLogo/CenterFixedLogo.component.tsx

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,14 @@
1-
import { LogoIcon } from '@/assets/icons/system';
2-
import LogoImg from '@/assets/images/logo.png';
1+
import { LogoIcon, LogoTextIcon } from '@/assets/icons/system';
32

43
import * as S from './CenterFixedLogo.styled';
54

65
const CenterFixedLogo = () => {
76
return (
87
<S.CenterLogoGroup>
9-
<img src={LogoImg} alt="ahhachul-app-logo" />
8+
<LogoIcon />
109
<div>
1110
<span>더 편한 지하철을 만드는</span>
12-
<LogoIcon />
11+
<LogoTextIcon />
1312
</div>
1413
</S.CenterLogoGroup>
1514
);

services/ahhachul.com/src/components/domain/home/headerActions/HomeHeaderActions.component.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ const wrapperVariants = {
3333
transition: {
3434
type: 'spring',
3535
bounce: 0,
36-
duration: 0.2,
36+
duration: 0.4,
3737
staggerChildren: 0.3,
3838
},
3939
},

services/ahhachul.com/src/components/domain/lostFound/postDetail/template/LostFoundDetail.styled.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,10 +76,10 @@ export const ContentContainer = styled.div`
7676
padding: 0 20px;
7777
`;
7878

79-
export const TextContent = styled.pre`
79+
export const TextContent = styled.div`
8080
${({ theme }) => css`
8181
${theme.fonts.bodyLargeSemi};
82-
font-family: Pretendard;
82+
font-family: 'Pretendard';
8383
color: ${theme.colors.gray[90]};
8484
padding: 24px 0;
8585
margin-top: 12px;

services/ahhachul.com/src/styles/globalStyles.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ const globalStyles = css`
136136
body {
137137
${theme.fonts.bodyMedium};
138138
min-height: -webkit-fill-available;
139-
font-family: Pretendard, system-ui;
139+
font-family: 'Pretendard', system-ui;
140140
color: ${theme.colors.black};
141141
line-height: 1;
142142
background-color: ${theme.colors.white};
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
export default function Page() {
2-
return <main className="flex min-h-screen flex-col text-black bg-white ">Hi</main>;
2+
return <main className="flex min-h-screen flex-col text-black bg-white ">알람</main>;
33
}

0 commit comments

Comments
 (0)