Skip to content

Commit ea26d68

Browse files
committed
Decorate button
1 parent 61ee52d commit ea26d68

File tree

1 file changed

+13
-2
lines changed

1 file changed

+13
-2
lines changed

web/pages/oss-friends/index.vue

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,17 @@
22
<v-container class="mt-16">
33
<v-row>
44
<v-col cols="10" offset="1" class="mt-16">
5-
<h1 class="text-h2 mb-4 text-center">Open Source Friends</h1>
5+
<h1
6+
class="mb-4 text-center"
7+
:class="{
8+
'text-h2': $vuetify.breakpoint.lgAndUp,
9+
'text-h3': !$vuetify.breakpoint.lgAndUp,
10+
}"
11+
>
12+
Open Source Friends
13+
</h1>
614
<p class="text-h5 text--secondary text-center">
7-
Here are some of our favorites open-source projects.
15+
Here are some of our favorite open-source projects.
816
</p>
917
<v-row class="mb-8 mt-8">
1018
<v-col v-if="apps.length == 0" class="text-center my-16">
@@ -21,6 +29,7 @@
2129
<v-card-actions>
2230
<v-btn text :href="app.href" color="primary">
2331
Learn More
32+
<v-icon right>{{ mdiOpenInNew }}</v-icon>
2433
</v-btn>
2534
</v-card-actions>
2635
</v-card>
@@ -39,6 +48,7 @@
3948

4049
<script lang="ts">
4150
import Vue from 'vue'
51+
import { mdiOpenInNew } from '@mdi/js'
4252
4353
type AppData = {
4454
name: string
@@ -50,6 +60,7 @@ export default Vue.extend({
5060
name: 'OpenSourceFriendsIndex',
5161
layout: 'website',
5262
data: () => ({
63+
mdiOpenInNew,
5364
apps: [] as AppData[],
5465
}),
5566
async fetch() {

0 commit comments

Comments
 (0)