File tree Expand file tree Collapse file tree 1 file changed +13
-2
lines changed
Expand file tree Collapse file tree 1 file changed +13
-2
lines changed Original file line number Diff line number Diff line change 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" >
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 >
3948
4049<script lang="ts">
4150import Vue from ' vue'
51+ import { mdiOpenInNew } from ' @mdi/js'
4252
4353type 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() {
You can’t perform that action at this time.
0 commit comments