Skip to content

Commit

Permalink
feat(sponsors): use orange boxes as requested
Browse files Browse the repository at this point in the history
Signed-off-by: Martin Dünkelmann <[email protected]>
  • Loading branch information
MartinX3 committed Mar 9, 2023
1 parent 2ef3bf6 commit b5a3142
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/pages/sponsors.vue
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@
<!-- TODO WORKAROUND dependency '@yeger/vue2-masonry-wall' is needed until vuetify 3.2.0 delivers native support. See https://github.com/vuetifyjs/vuetify/issues/11177 -->
<masonry-wall :column-width="280" :gap="16" :items="useSponsorStore().all">
<template #default="{ item }">
<v-card flat :href="item.url.toString()" max-width="20em" target="_blank">
<v-card-text>
<v-card color="primary" flat :href="item.url.toString()" max-width="20em" target="_blank">
<v-card-title>
<div v-if="item.text" v-text="item.text" />
<v-img v-else-if="item.imageUrl" contain :src="item.imageUrl.toString()" />
</v-card-text>
</v-card-title>
</v-card>
</template>
</masonry-wall>
Expand Down

0 comments on commit b5a3142

Please sign in to comment.