Skip to content

Commit 863f51b

Browse files
committed
update colors
1 parent 993245f commit 863f51b

File tree

2 files changed

+41
-8
lines changed

2 files changed

+41
-8
lines changed
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
<script setup lang="ts">
2+
import { defineComponent } from "vue";
3+
4+
defineComponent({
5+
name: "HugeiconsNewTwitterEllipse",
6+
});
7+
</script>
8+
9+
<template>
10+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
11+
<g
12+
fill="none"
13+
stroke="currentColor"
14+
stroke-linecap="round"
15+
stroke-linejoin="round"
16+
stroke-width="1.5"
17+
color="currentColor"
18+
>
19+
<path
20+
d="m7 17l4.194-4.193M17 7l-4.193 4.194m0 0L9.777 7H7l4.194 5.807m1.612-1.614L17 17h-2.778l-3.028-4.193"
21+
/>
22+
<path
23+
d="M22 12c0 5.523-4.477 10-10 10S2 17.523 2 12S6.477 2 12 2s10 4.477 10 10"
24+
/>
25+
</g>
26+
</svg>
27+
</template>

packages/frontendmu-nuxt/components/site/LeftMenu.vue

Lines changed: 14 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,45 +1,51 @@
11
<template>
22
<nav
3-
class="fixed bottom-[50px] gap-4 flex-col pl-4 justify-end w-10 hidden xl:flex"
3+
class="fixed bottom-[50px] gap-4 flex-col pl-4 justify-end w-10 hidden xl:flex z-30"
44
>
55
<a
6+
target="_blank"
67
href="https://discord.gg/WxXW9Jvv6k?ref=frontend.mu"
7-
class="text-[#5865f2] text-sm md:text-normal hover:animate-bounce"
8+
class="text-verse-500 dark:text-verse-200 text-sm md:text-normal hover:animate-bounce hover:ease-in-out hover:delay-200"
89
>
910
<IconDiscord class="w-6" />
1011
</a>
1112

1213
<a
14+
target="_blank"
1315
href="https://github.com/Front-End-Coders-Mauritius?ref=frontend.mu"
14-
class="text-[#333] text-sm md:text-normal dark:text-white hover:animate-bounce"
16+
class="text-verse-500 dark:text-verse-200 text-sm md:text-normal hover:animate-bounce hover:ease-in-out hover:delay-200"
1517
>
1618
<IconGithub class="w-6" />
1719
</a>
1820

1921
<a
22+
target="_blank"
2023
href="https://chat.whatsapp.com/invite/0kQ2QX0ZQ0j1YQ4X6Q4Q4Q"
21-
class="text-[#25D366] text-sm md:text-normal hover:animate-bounce"
24+
class="text-verse-500 dark:text-verse-200 text-sm md:text-normal hover:animate-bounce hover:ease-in-out hover:delay-200"
2225
>
2326
<IconWhatsappCommunity class="w-6" />
2427
</a>
2528

2629
<a
30+
target="_blank"
2731
href="https://twitter.com/frontendmu"
28-
class="text-[#1DA1F2] text-sm md:text-normal hover:animate-bounce"
32+
class="text-verse-500 dark:text-verse-200 text-sm md:text-normal hover:animate-bounce hover:ease-in-out hover:delay-200"
2933
>
30-
<IconTwitter class="w-6" />
34+
<IconSocialTwitter class="w-6" />
3135
</a>
3236

3337
<a
38+
target="_blank"
3439
href="https://www.instagram.com/frontend.mu/?ref=frontend.mu"
35-
class="text-[#d6249f] text-sm md:text-normal hover:animate-bounce"
40+
class="text-verse-500 dark:text-verse-200 text-sm md:text-normal hover:animate-bounce hover:ease-in-out hover:delay-200"
3641
>
3742
<IconInstagram class="w-6" />
3843
</a>
3944

4045
<a
46+
target="_blank"
4147
href="https://www.linkedin.com/company/81846464/admin/?ref=frontend.mu"
42-
class="text-[#007db1] text-sm md:text-normal hover:animate-bounce"
48+
class="text-verse-500 dark:text-verse-200 text-sm md:text-normal hover:animate-bounce hover:ease-in-out hover:delay-200"
4349
>
4450
<IconLinkedin class="w-6" />
4551
</a>

0 commit comments

Comments
 (0)