Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Fix] Favicon 선명하고 약간 둥글게 교체 #343

Merged
merged 1 commit into from
Oct 19, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file modified app/public/favicon.ico
Binary file not shown.
6 changes: 3 additions & 3 deletions app/src/@shared/assets/AppLogoSvg.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,17 +5,17 @@ export const AppLogoSvg = (props: React.SVGProps<SVGSVGElement>) => {

return (
<svg
viewBox="0 0 39 29"
viewBox="0 0 100 100"
fill="none"
xmlns="http://www.w3.org/2000/svg"
{...props}
>
<path
d="M16.0463 28.2061H38.1099V25.1603H16.0463V28.2061ZM31.9811 11.4542H36.8841V22.1145H31.9811V11.4542ZM24.6266 0.793823H29.5296V22.1145H24.6266V0.793823ZM17.2721 5.36254H22.1751V22.1145H17.2721V5.36254Z"
d="M41.7341 78.268C41.7341 80.1934 43.295 81.7543 45.2204 81.7543H88.7573C90.6828 81.7543 92.2437 80.1934 92.2437 78.268V78.268C92.2437 76.3425 90.6828 74.7816 88.7573 74.7816H45.2204C43.295 74.7816 41.7341 76.3425 41.7341 78.268V78.268ZM78.2132 46.9045C78.2132 44.9715 79.7802 43.4045 81.7132 43.4045H85.9376C87.8706 43.4045 89.4376 44.9715 89.4376 46.9045V64.3089C89.4376 66.2419 87.8706 67.8089 85.9376 67.8089H81.7132C79.7802 67.8089 78.2132 66.2419 78.2132 64.3089V46.9045ZM61.3767 22.5C61.3767 20.567 62.9437 19 64.8767 19H69.101C71.034 19 72.601 20.567 72.601 22.5V64.3089C72.601 66.2419 71.034 67.8089 69.101 67.8089H64.8767C62.9437 67.8089 61.3767 66.2419 61.3767 64.3089V22.5ZM44.5402 32.9591C44.5402 31.0261 46.1072 29.4591 48.0402 29.4591H52.2645C54.1975 29.4591 55.7645 31.0261 55.7645 32.9591V64.3089C55.7645 66.2419 54.1975 67.8089 52.2645 67.8089H48.0401C46.1072 67.8089 44.5402 66.2419 44.5402 64.3089V32.9591Z"
fill={props.fill ?? theme.colors.primary.default}
/>
<path
d="M14.709 24.1946H0V22.1145H14.709V24.1946ZM4.08584 12.7542H0.817168V20.0345H4.08584V12.7542ZM8.98885 5.474H5.72018V20.0345H8.98885V5.474ZM13.8919 8.5941H10.6232V20.0345H13.8919V8.5941Z"
d="M39.673 71.1898C39.673 72.5048 38.6071 73.5708 37.2921 73.5708H8.38092C7.06597 73.5708 6 72.5048 6 71.1898V71.1898C6 69.8749 7.06597 68.8089 8.38092 68.8089H37.2921C38.6071 68.8089 39.673 69.8749 39.673 71.1898V71.1898ZM15.3536 49.8806C15.3536 48.4999 14.2343 47.3806 12.8536 47.3806H10.3707C8.99002 47.3806 7.87073 48.4999 7.87073 49.8806V61.5471C7.87073 62.9278 8.99001 64.0471 10.3707 64.0471H12.8536C14.2343 64.0471 15.3536 62.9278 15.3536 61.5471V49.8806ZM26.578 33.2141C26.578 31.8334 25.4587 30.7141 24.078 30.7141H21.5951C20.2144 30.7141 19.0951 31.8334 19.0951 33.2141V61.5471C19.0951 62.9278 20.2144 64.0471 21.5951 64.0471H24.078C25.4587 64.0471 26.578 62.9278 26.578 61.5471V33.2141ZM37.8023 40.3569C37.8023 38.9762 36.683 37.8569 35.3023 37.8569H32.8194C31.4387 37.8569 30.3194 38.9762 30.3194 40.3569V61.5471C30.3194 62.9278 31.4387 64.0471 32.8194 64.0471H35.3023C36.683 64.0471 37.8023 62.9278 37.8023 61.5471V40.3569Z"
fill={props.fill ?? theme.colors.primary.default}
/>
</svg>
Expand Down