Compare commits
5 Commits
f3511277f9
...
fetch-test
Author | SHA1 | Date | |
---|---|---|---|
b73865157d | |||
ac2fb16703 | |||
ef29ef3d82 | |||
4d1f4ea120 | |||
6bfa1547f9 |
@ -7,7 +7,7 @@
|
|||||||
<v-container class="text-center">
|
<v-container class="text-center">
|
||||||
<v-row justify="center">
|
<v-row justify="center">
|
||||||
<v-col cols="12" sm="6" md="5" class="mt-4">
|
<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>
|
<v-icon left size="100">mdi-skip-previous</v-icon>
|
||||||
</mqtt-button>
|
</mqtt-button>
|
||||||
</v-col>
|
</v-col>
|
||||||
@ -32,7 +32,5 @@
|
|||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script setup>
|
<script setup>
|
||||||
|
|
||||||
import MqttButton from './MqttButton.vue';
|
import MqttButton from './MqttButton.vue';
|
||||||
|
|
||||||
</script>
|
</script>
|
||||||
|
@ -7,29 +7,29 @@
|
|||||||
<v-container class="text-center">
|
<v-container class="text-center">
|
||||||
<v-row justify="center">
|
<v-row justify="center">
|
||||||
<v-col cols="12" sm="6" md="4" class="mt-4">
|
<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>
|
<v-icon size="100">mdi-check-circle-outline</v-icon>
|
||||||
</mqtt-button>
|
</mqtt-button>
|
||||||
</v-col>
|
</v-col>
|
||||||
<v-col cols="12" sm="6" md="4" class="mt-4">
|
<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>
|
<v-icon size="100">mdi-close-circle-outline</v-icon>
|
||||||
</mqtt-button>
|
</mqtt-button>
|
||||||
</v-col>
|
</v-col>
|
||||||
<v-col cols="12" sm="6" md="4" class="mt-4">
|
<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>
|
<v-icon size="100">mdi-timer-outline</v-icon>
|
||||||
</mqtt-button>
|
</mqtt-button>
|
||||||
</v-col>
|
</v-col>
|
||||||
</v-row>
|
</v-row>
|
||||||
<v-row justify="center">
|
<v-row justify="center">
|
||||||
<v-col cols="12" sm="6" md="4" class="mb-4">
|
<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>
|
<v-icon size="100">mdi-human-handsup</v-icon>
|
||||||
</mqtt-button>
|
</mqtt-button>
|
||||||
</v-col>
|
</v-col>
|
||||||
<v-col cols="12" sm="6" md="s" class="mb-4">
|
<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>
|
<v-icon size="100">mdi-bell-outline</v-icon>
|
||||||
</mqtt-button>
|
</mqtt-button>
|
||||||
</v-col>
|
</v-col>
|
||||||
|
1
src/fetch.txt
Normal file
1
src/fetch.txt
Normal file
@ -0,0 +1 @@
|
|||||||
|
test
|
@ -35,7 +35,8 @@ import CardSoundboard from '@/components/CardSoundboard.vue';
|
|||||||
background-color: #2E7D32; /* Changez la couleur en fonction de votre thème */
|
background-color: #2E7D32; /* Changez la couleur en fonction de votre thème */
|
||||||
}
|
}
|
||||||
.btn{
|
.btn{
|
||||||
border-radius:50px!important;
|
border-radius:30px!important;
|
||||||
|
background-color: #2979FF; /* Changez la couleur en fonction de votre thème */
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
Reference in New Issue
Block a user