Skip to content

Commit

Permalink
fix: Applied changes:
Browse files Browse the repository at this point in the history
- Removed unnecessary flare field.
- Optimized card style for large screens.
  • Loading branch information
Mahmoud-Emad committed Jun 25, 2024
1 parent 8f4d7a6 commit df84366
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<template>
<v-row>
<v-col v-for="card in cards" :key="card.title" cols="12" sm="12" md="12" lg="6">
<v-col v-for="card in cards" :key="card.title" cols="12" sm="12" md="12" lg="6" xl="4">
<router-link :to="card.route">
<v-hover>
<template v-slot:default="{ isHovering, props }">
Expand All @@ -25,7 +25,6 @@
<v-chip v-for="tag in card.tags" :key="tag" class="ml-2 pulse-animation">
{{ tag }}
</v-chip>
<v-chip v-if="card.flare" class="ml-2 pulse-animation"> Community </v-chip>
</v-card-title>
<v-card-text class="mt-2"> {{ card.excerpt }} </v-card-text>
</v-card>
Expand Down
1 change: 0 additions & 1 deletion packages/playground/src/utils/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,5 @@ export interface ApplicationCard {
excerpt: string;
icon: string;
route: string;
flare?: string;
tags?: string[];
}

0 comments on commit df84366

Please sign in to comment.