Skip to content

Commit

Permalink
Add Contact button, style footer for mobile
Browse files Browse the repository at this point in the history
  • Loading branch information
krishnans2006 committed Feb 8, 2024
1 parent 5239e92 commit b04901e
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions src/components/Footer.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,20 @@
import LogoLinkedIn from '@svicons/ionicons-solid/logo-linkedin.svelte';
import LogoTwitter from '@svicons/ionicons-solid/logo-twitter.svelte';
import LogoGithub from '@svicons/ionicons-solid/logo-github.svelte';
import Contact from '@svicons/ionicons-solid/mail.svelte';
let classNames = '';
export { classNames as class };
</script>

<div
class="py-8 px-8 md:px-12 w-full bg-theme-100 flex justify-end items-center text-blackberry-800 ${classNames}"
class="py-8 px-8 md:px-12 w-full bg-theme-100 sm:flex sm:justify-center sm:justify-end items-center text-blackberry-800 ${classNames}"
>
<div class="ml-auto flex space-x-8">
<div class="flex justify-evenly space-x-4 sm:space-x-8 sm:ml-auto">
<a href="mailto:[email protected]" target="_blank" class="hover:text-blackberry-500"
>
<Contact width="30px" /></a
>
<a href="https://twitter.com/hacktjofficial" target="_blank" class="hover:text-blackberry-500"
><LogoTwitter width="30px" /></a
>
Expand Down

0 comments on commit b04901e

Please sign in to comment.