Skip to content

Commit

Permalink
fix: 스폰서 이미지 크기가 각자 다른 이슈 수정 (#229)
Browse files Browse the repository at this point in the history
  • Loading branch information
saseungmin authored Nov 20, 2024
1 parent 7bc7e0b commit a31a9f9
Show file tree
Hide file tree
Showing 11 changed files with 2 additions and 10 deletions.
Binary file modified apps/web/public/assets/logos/sponsors/asan-nanum.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 apps/web/public/assets/logos/sponsors/easys-publishing.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 apps/web/public/assets/logos/sponsors/hanbit.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 apps/web/public/assets/logos/sponsors/impact-campus.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 apps/web/public/assets/logos/sponsors/maru180.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 apps/web/public/assets/logos/sponsors/naver-d2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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 apps/web/public/assets/logos/sponsors/wanted.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 apps/web/public/assets/logos/sponsors/witi.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
}

.sponsorImage {
object-fit: contain;
object-fit: cover;
}
}
}
Expand Down
10 changes: 1 addition & 9 deletions apps/web/src/components/organisms/SponsorSection/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,8 @@ import Image from 'next/image';

import { Button } from '@dnd-academy/ui';

import ExternalLink from '@/components/atoms/ExternalLink';
import SectionTitle from '@/components/atoms/SectionTitle';
import { LinkIcon } from '@/lib/assets/icons';
import { EliceLogo, NotefolioLogo } from '@/lib/assets/logos';

import styles from './index.module.scss';

Expand All @@ -19,7 +17,7 @@ function SponsorSection() {
{ sponsor: 'maru180', url: 'https://maru.org', image: 'maru180.png' },
{ sponsor: 'asan-nanum', url: 'https://asan-nanum.org', image: 'asan-nanum.png' },
{ sponsor: 'impact-campus', url: 'https://impactcampus.campaignus.me', image: 'impact-campus.png' },
// { sponsor: 'notefolio', url: 'https://notefolio.net', image: 'notefolio.png' },
{ sponsor: 'notefolio', url: 'https://notefolio.net', image: 'notefolio.png' },
];

return (
Expand All @@ -46,12 +44,6 @@ function SponsorSection() {
/>
</a>
))}
<ExternalLink href="https://notefolio.net">
<NotefolioLogo className={styles.sponsorLogo} />
</ExternalLink>
<ExternalLink href="https://elice.io/ko">
<EliceLogo className={styles.sponsorLogo} />
</ExternalLink>
</div>
<Button
isExternalLink
Expand Down

0 comments on commit a31a9f9

Please sign in to comment.