Skip to content

Commit ce8218d

Browse files
fix: remove external links from CardShowCase
1 parent 8f0157a commit ce8218d

File tree

1 file changed

+13
-37
lines changed

1 file changed

+13
-37
lines changed

src/templates/cardshowcase/CardShowCase.vue

Lines changed: 13 additions & 37 deletions
Original file line numberDiff line numberDiff line change
@@ -17,65 +17,41 @@
1717

1818
<ul class="border-icons flex flex-row gap-1 md:gap-2 lg:gap-3 overflow-x-auto py-2">
1919
<li>
20-
<a
21-
class="block relative rounded w-14 h-14"
22-
href="https://openai.com/"
23-
title="Open IA"
24-
aria-label="Open IA Website"
25-
target="_blank"
26-
>
20+
<div class="a block relative rounded w-14 h-14">
2721
<span class="flex items-center justify-center absolute rounded w-[54px] h-[54px] left-[1px] top-[1px]">
2822
<i class="w-[40px] h-[40px]">
2923
<IconOpenIa />
3024
</i>
3125
</span>
32-
</a>
26+
</div>
3327
</li>
3428
<li>
35-
<a
36-
class="block relative rounded w-14 h-14"
37-
href="https://www.astro.build"
38-
title="Astro Build"
39-
aria-label="Astro Build Website"
40-
target="_blank"
41-
>
29+
<div class="a block relative rounded w-14 h-14">
4230
<span class="flex items-center justify-center absolute rounded w-[54px] h-[54px] left-[1px] top-[1px]">
4331
<i class="w-[40px] h-[40px]">
4432
<IconAstroDark class="hide-on-light" />
4533
<IconAstroLight class="hide-on-dark" />
4634
</i>
4735
</span>
48-
</a>
36+
</div>
4937
</li>
5038
<li>
51-
<a
52-
class="block relative rounded w-14 h-14"
53-
href="https://angular.dev/"
54-
title="AngularJS"
55-
aria-label="AngularJS Website"
56-
target="_blank"
57-
>
39+
<div class="a block relative rounded w-14 h-14">
5840
<span class="flex items-center justify-center absolute rounded w-[54px] h-[54px] left-[1px] top-[1px]">
5941
<i class="w-[40px] h-[40px]">
6042
<IconAngular />
6143
</i>
6244
</span>
63-
</a>
45+
</div>
6446
</li>
6547
<li>
66-
<a
67-
class="block relative rounded w-14 h-14"
68-
href="https://vuejs.org/"
69-
title="VueJS"
70-
target="_blank"
71-
aria-label="VueJS Website"
72-
>
48+
<div class="a block relative rounded w-14 h-14">
7349
<span class="flex items-center justify-center absolute rounded w-[54px] h-[54px] left-[1px] top-[1px]">
7450
<i class="w-[40px] h-[40px]">
7551
<IconVue />
7652
</i>
7753
</span>
78-
</a>
54+
</div>
7955
</li>
8056
</ul>
8157

@@ -121,7 +97,7 @@
12197
li:nth-child(5) { left: -4rem; }
12298
}
12399
124-
a {
100+
.a {
125101
background-color: #F3652B;
126102
background: linear-gradient(90deg, #F3652B 0%, var(--surface-ground) 100%);
127103
}
@@ -156,7 +132,7 @@
156132
li:nth-child(5) { left: -4rem; }
157133
}
158134
159-
a {
135+
.a {
160136
background-color: #F3652B;
161137
background: linear-gradient(90deg, #F3652B 0%, var(--surface-ground) 100%);
162138
}
@@ -167,7 +143,7 @@
167143
.azion.azion-light {
168144
.border-icons {
169145
li {
170-
a {
146+
.a {
171147
span {
172148
background-color: var(--surface-50);
173149
}
@@ -179,7 +155,7 @@
179155
.azion.azion-dark {
180156
.border-icons {
181157
li {
182-
a {
158+
.a {
183159
span {
184160
background-color: var(--surface-ground);
185161
}
@@ -196,7 +172,7 @@
196172
left: 0;
197173
transition: left 800ms ease-in-out !important;
198174
199-
a {
175+
.a {
200176
background-color: var(--surface-border);
201177
position: relative;
202178
top: 0;

0 commit comments

Comments
 (0)