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: social icons overlapping each other #626

Merged
merged 1 commit into from
Sep 10, 2023
Merged
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
14 changes: 7 additions & 7 deletions components/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,17 +14,17 @@ const Footer: React.FC<FooterProps> = ({ theme, setTheme }) => {
<div className='w-full lg:w-2/5'>
<h1 className='text-koreanbots-blue text-2xl font-bold'>국내 디스코드의 모든 것을 한 곳에서.</h1>
<span className='text-base'>2020-2023 한국 디스코드 리스트, All rights reserved.</span>
<div className='text-2xl'>
<div className='text-2xl flex space-x-1'>
<Link href='/discord'>
<a className='mr-2'>
<i className='fab fa-discord' />
<a>
<i className='fab fa-discord inline-block w-full' />
</a>
</Link>
<a href='https://github.com/koreanbots' className='mr-2'>
<i className='fab fa-github' />
<a href='https://github.com/koreanbots'>
<i className='fab fa-github inline-block w-full' />
</a>
<a href='https://twitter.com/koreanbots' className='mr-2'>
<i className='fab fa-twitter' />
<a href='https://twitter.com/koreanbots'>
<i className='fab fa-twitter inline-block w-full' />
</a>
</div>
</div>
Expand Down
Loading