Skip to content

Commit ba23d73

Browse files
committed
Adding Okuto Oyama as a supporter
1 parent 286268a commit ba23d73

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

src/.vuepress/config/supporters.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,10 @@ module.exports = [
33
name: 'Alan Ktquez',
44
image: 'alan-ktquez.png',
55
link: 'https://github.com/ktquez'
6+
},
7+
{
8+
name: 'Okuto Oyama',
9+
image: 'yamanoku.png',
10+
link: 'https://github.com/yamanoku'
611
}
712
]
1.2 KB
Loading

src/.vuepress/theme/views/Home.vue

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -106,16 +106,16 @@
106106
>
107107
{{ $frontmatter.supportersText }}:
108108
</h2>
109-
<ul class="flex flex-wrap justify-between flex-grow">
109+
<ul class="flex flex-wrap flex-grow">
110110
<li
111111
v-for="(supporter, index) in $themeConfig.supporters"
112112
:key="`supporter-${index}`"
113-
class="w-48"
113+
class="ml-2"
114114
>
115115
<a
116116
:href="supporter.link"
117117
:aria-label="`${supporter.name}`"
118-
class="block w-12 h-12 overflow-hidden rounded-full"
118+
class="block w-12 h-12 overflow-hidden transition-transform transform rounded-full hover:scale-110 hover:shadow"
119119
>
120120
<img
121121
:src="`/img/supporters/${supporter.image}`"

0 commit comments

Comments
 (0)