We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 610034c commit a11e882Copy full SHA for a11e882
components/UserCard.vue
@@ -2,8 +2,16 @@
2
<div class="flex mx-8 h-32 lg:h-40 content-center has-border pb-3">
3
<p class="rank hidden md:block">{{ rank }}.</p>
4
<div class="image-container">
5
- <img class="image" :src="imageUrl" alt="avatar" width="80" height="80" />
6
- <span class="image-filter"></span>
+ <a :href="profileUrl" target="_blank">
+ <img
7
+ class="image"
8
+ :src="imageUrl"
9
+ alt="avatar"
10
+ width="80"
11
+ height="80"
12
+ />
13
+ <span class="image-filter"></span>
14
+ </a>
15
</div>
16
17
<div class="block w-full pl-2 lg:px-3 mt-6 lg:mt-8">
@@ -81,9 +89,6 @@ export default {
81
89
@apply text-sm font-semibold lg:text-lg;
82
90
}
83
91
84
-.user-name {
85
-}
86
-
87
92
.has-border {
88
93
border-bottom: 1px dotted rgba(0, 0, 0, 0.3);
94
0 commit comments