Sépare les cartes en plusieurs composants
This commit is contained in:
39
src/components/CardSoundboard.vue
Normal file
39
src/components/CardSoundboard.vue
Normal file
@ -0,0 +1,39 @@
|
||||
<template>
|
||||
<v-card tile outlined class="card" color="">
|
||||
<v-card-title class="card__title primary">
|
||||
<v-icon left class="white--text pr-5 pl-2" size="50">mdi-music-box-multiple</v-icon>
|
||||
Soundboard
|
||||
</v-card-title>
|
||||
<v-container class="text-center">
|
||||
<v-row justify="center">
|
||||
<v-col cols="12" sm="6" md="4" class="mt-4">
|
||||
<v-btn class="card" width="200" height="130" @click="" rounded>
|
||||
<v-icon size="100">mdi-check-circle-outline</v-icon>
|
||||
</v-btn>
|
||||
</v-col>
|
||||
<v-col cols="12" sm="6" md="4" class="mt-4">
|
||||
<v-btn class="card" width="200" height="130" @click="" rounded>
|
||||
<v-icon size="100">mdi-close-circle-outline</v-icon>
|
||||
</v-btn>
|
||||
</v-col>
|
||||
<v-col cols="12" sm="6" md="4" class="mt-4">
|
||||
<v-btn class="card" width="200" height="130" @click="" rounded>
|
||||
<v-icon size="100">mdi-timer-outline</v-icon>
|
||||
</v-btn>
|
||||
</v-col>
|
||||
</v-row>
|
||||
<v-row justify="center">
|
||||
<v-col cols="12" sm="6" md="4" class="mb-4">
|
||||
<v-btn class="card" width="220" height="130" @click="" rounded>
|
||||
<v-icon size="100">mdi-human-handsup</v-icon>
|
||||
</v-btn>
|
||||
</v-col>
|
||||
<v-col cols="12" sm="6" md="s" class="mb-4">
|
||||
<v-btn class="card" width="220" height="130" @click="" rounded>
|
||||
<v-icon size="100">mdi-bell-outline</v-icon>
|
||||
</v-btn>
|
||||
</v-col>
|
||||
</v-row>
|
||||
</v-container>
|
||||
</v-card>
|
||||
</template>
|
Reference in New Issue
Block a user