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 a032879 commit 02555f8Copy full SHA for 02555f8
.vitepress/theme/components/Route.vue
@@ -18,10 +18,11 @@
18
<Badge type="tip">🔍 Support Radar</Badge>
19
</a>
20
</p>
21
- <p class="author">
+ <p class="author" style="display: flex; align-items: center; gap: 8px; flex-wrap: wrap;">
22
👨💻 Author: {{ ' ' }}
23
- <a v-for="(uid, index) in data.maintainers" :key="index" :href="`https://github.com/${uid}`" target="_blank">
24
- @{{ uid }}{{' '}}
+ <a v-for="(uid, index) in data.maintainers" :key="index" :href="`https://github.com/${uid}`" target="_blank" style="display: inline-flex; align-items: center; margin-right: 6px;">
+ <img :src="`https://avatars.githubusercontent.com/${uid}`" style="width: 20px; height: 20px; border-radius: 50%; margin-right: 4px;" />
25
+ {{ uid }}{{' '}}
26
27
28
<p v-if="demoUrl" class="example">
0 commit comments