Skip to content

Commit

Permalink
refactor: 로고 및 파비콘 교체 (#103)
Browse files Browse the repository at this point in the history
* refactor: favicon 교체

* refactor: logo 교체
  • Loading branch information
hae-on authored Apr 20, 2024
1 parent fd21bc7 commit c0a87ba
Show file tree
Hide file tree
Showing 9 changed files with 14 additions and 103 deletions.
Binary file modified public/assets/apple-icon-180x180.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified public/assets/favicon-16x16.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified public/assets/favicon-32x32.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified public/assets/favicon.ico
Binary file not shown.
110 changes: 11 additions & 99 deletions src/assets/logo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion src/components/Common/Header/Header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ const Header = () => {
return (
<header className={container}>
<Link to={PATH.HOME}>
<Logo width={120} />
<Logo />
</Link>
<Link to={PATH.SEARCH}>
<SvgIcon variant="search2" width={20} height={20} fill="none" stroke="#232527" />
Expand Down
1 change: 0 additions & 1 deletion src/components/Common/Header/header.css.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ export const container = style({
width: '100%',
height: 50,
maxWidth: 400,
padding: '0 20px',
backgroundColor: '#fff',
transform: 'translateX(-50%)',
zIndex: 1001,
Expand Down
2 changes: 1 addition & 1 deletion src/components/Common/TopBar/TopBar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ const TopBar = ({ children }: TopBarProps) => {
const Logo = () => {
return (
<Link to={PATH.HOME}>
<LogoImage width={120} />
<LogoImage />
</Link>
);
};
Expand Down
2 changes: 1 addition & 1 deletion src/pages/LoginPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ export const LoginPage = () => {
</Button>
<Spacing size={60} />
<LoginSection>
<Logo width={250} />
<Logo />
<Spacing size={24} />
<Text size="lg" lineHeight="xl" weight="bold">
{SLOGAN}
Expand Down

0 comments on commit c0a87ba

Please sign in to comment.