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

Fixed #540

Merged
merged 1 commit into from
Jul 29, 2023
Merged

Fixed #540

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
12 changes: 6 additions & 6 deletions src/components/layout/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -100,8 +100,8 @@ const Footer: FC = () => {
<h2 className="text-2xl font-bold text-color-pink md:text-center md:text-lg">
Socials
</h2>
<ul className=" m-0 mt-4 flex list-none gap-3 font-medium md:mt-6 md:justify-center">
<li>
<ul className=" m-0 mt-4 md:ml-[1.5rem] sm:ml-[1.5rem] md:mt-[3rem] flex-col lg:ml-[4.5rem] list-none gap-3 font-medium md:mt-6 md:justify-center">
<li className="mt-[-3.5rem]">
<Link
href="https://github.com/UniKonf/vibey"
className="p-3 text-center text-3xl hover:text-gray-200"
Expand All @@ -111,7 +111,7 @@ const Footer: FC = () => {
<AiOutlineGithub aria-hidden="true" />
</Link>
</li>
<li>
<li className="mt-[-3rem]">
<Link
href="https://twitter.com/vibeydotlive"
className=" px-3 pb-4 text-3xl hover:text-blue-400"
Expand All @@ -121,7 +121,7 @@ const Footer: FC = () => {
<AiOutlineTwitter aria-hidden="true" />
</Link>
</li>
<li>
<li className="mt-[-3rem]">
<Link
href="https://discord.gg/erHegt9UTf"
className=" px-3 pb-4 pt-3 text-3xl hover:text-indigo-500"
Expand All @@ -137,9 +137,9 @@ const Footer: FC = () => {
<hr className="mt-5 border-base-content/30" />
<div className="mx-auto mt-5 flex w-11/12 items-center justify-center">
<div
className={`${
className={
theme === 'dark' ? 'text-neutral-400' : 'text-neutral-700'
}`}
}
>
Vibey © {new Date().getFullYear()}. All Rights Reserved.
</div>
Expand Down
Loading