5 Commits

4 changed files with 13 additions and 13 deletions

View File

@ -7,7 +7,7 @@
<v-container class="text-center">
<v-row justify="center">
<v-col cols="12" sm="6" md="5" class="mt-4">
<mqtt-button width="240" height="130" class="btn card xs12 sm6 md3" topic="/display/control" message="previous">
<mqtt-button width="240" height="130" class="btn xs12 sm6 md3" topic="/display/control" message="previous">
<v-icon left size="100">mdi-skip-previous</v-icon>
</mqtt-button>
</v-col>
@ -32,7 +32,5 @@
</template>
<script setup>
import MqttButton from './MqttButton.vue';
</script>

View File

@ -7,29 +7,29 @@
<v-container class="text-center">
<v-row justify="center">
<v-col cols="12" sm="6" md="4" class="mt-4">
<mqtt-button class="card" width="200" height="130" topic="/sound/playsound" message="good-response" rounded>
<mqtt-button class="btn" width="200" height="130" topic="/sound/playsound" message="good-response" rounded>
<v-icon size="100">mdi-check-circle-outline</v-icon>
</mqtt-button>
</v-col>
<v-col cols="12" sm="6" md="4" class="mt-4">
<mqtt-button class="card" width="200" height="130" topic="/sound/playsound" message="bad-response" rounded>
<mqtt-button class="btn" width="200" height="130" topic="/sound/playsound" message="bad-response" rounded>
<v-icon size="100">mdi-close-circle-outline</v-icon>
</mqtt-button>
</v-col>
<v-col cols="12" sm="6" md="4" class="mt-4">
<mqtt-button class="card" width="200" height="130" topic="/sound/playsound" message="timer" rounded>
<mqtt-button class="btn" width="200" height="130" topic="/sound/playsound" message="timer" rounded>
<v-icon size="100">mdi-timer-outline</v-icon>
</mqtt-button>
</v-col>
</v-row>
<v-row justify="center">
<v-col cols="12" sm="6" md="4" class="mb-4">
<mqtt-button class="card" width="220" height="130" topic="/sound/playsound" message="applause" rounded>
<mqtt-button class="btn" width="220" height="130" topic="/sound/playsound" message="applause" rounded>
<v-icon size="100">mdi-human-handsup</v-icon>
</mqtt-button>
</v-col>
<v-col cols="12" sm="6" md="s" class="mb-4">
<mqtt-button class="card" width="220" height="130" topic="/sound/playsound" message="bell" rounded>
<mqtt-button class="btn" width="220" height="130" topic="/sound/playsound" message="bell" rounded>
<v-icon size="100">mdi-bell-outline</v-icon>
</mqtt-button>
</v-col>

1
src/fetch.txt Normal file
View File

@ -0,0 +1 @@
test

View File

@ -35,7 +35,8 @@ import CardSoundboard from '@/components/CardSoundboard.vue';
background-color: #2E7D32; /* Changez la couleur en fonction de votre thème */
}
.btn{
border-radius:50px!important;
border-radius:30px!important;
background-color: #2979FF; /* Changez la couleur en fonction de votre thème */
}
}
</style>