Skip to content

Commit

Permalink
Decorate button
Browse files Browse the repository at this point in the history
  • Loading branch information
AchoArnold committed Dec 3, 2024
1 parent 61ee52d commit ea26d68
Showing 1 changed file with 13 additions and 2 deletions.
15 changes: 13 additions & 2 deletions web/pages/oss-friends/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,17 @@
<v-container class="mt-16">
<v-row>
<v-col cols="10" offset="1" class="mt-16">
<h1 class="text-h2 mb-4 text-center">Open Source Friends</h1>
<h1
class="mb-4 text-center"
:class="{
'text-h2': $vuetify.breakpoint.lgAndUp,
'text-h3': !$vuetify.breakpoint.lgAndUp,
}"
>
Open Source Friends
</h1>
<p class="text-h5 text--secondary text-center">
Here are some of our favorites open-source projects.
Here are some of our favorite open-source projects.
</p>
<v-row class="mb-8 mt-8">
<v-col v-if="apps.length == 0" class="text-center my-16">
Expand All @@ -21,6 +29,7 @@
<v-card-actions>
<v-btn text :href="app.href" color="primary">
Learn More
<v-icon right>{{ mdiOpenInNew }}</v-icon>
</v-btn>
</v-card-actions>
</v-card>
Expand All @@ -39,6 +48,7 @@

<script lang="ts">
import Vue from 'vue'
import { mdiOpenInNew } from '@mdi/js'
type AppData = {
name: string
Expand All @@ -50,6 +60,7 @@ export default Vue.extend({
name: 'OpenSourceFriendsIndex',
layout: 'website',
data: () => ({
mdiOpenInNew,
apps: [] as AppData[],
}),
async fetch() {
Expand Down

0 comments on commit ea26d68

Please sign in to comment.