Skip to content

Commit 2002a6a

Browse files
committed
fix: issue
1 parent 80739a6 commit 2002a6a

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

.github/github-action/contributors.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
const contributors = [
2-
'tomalaforge',
32
'alcaidio',
43
'svenson95',
54
'jdegand',

docs/src/components/github/SponsorUser.svelte

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
</script>
1414

1515
{#each sponsors as { username, avatar }}
16-
<a href={`https://github.com/${username}`}>
16+
<a href={`https://github.com/${username}`} class="link-avatar">
1717
<img
1818
loading="lazy"
1919
src={avatar}
@@ -26,6 +26,10 @@
2626
{/each}
2727

2828
<style>
29+
.link-avatar {
30+
text-decoration: auto;
31+
}
32+
2933
.avatar {
3034
border-radius: 50%;
3135
width: 30px;

0 commit comments

Comments
 (0)