2024-02-23 17:33:03 +01:00
|
|
|
<template>
|
2024-04-05 14:12:22 +02:00
|
|
|
<v-navigation-drawer width="250"> <!-- Augmenter la largeur pour deux équipes côte à côte -->
|
2024-03-23 16:21:31 +01:00
|
|
|
<div class="label-pos">
|
2024-04-05 14:12:22 +02:00
|
|
|
<v-label class="labelTitle-style">Buzzer connectés</v-label>
|
2024-03-23 16:21:31 +01:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<v-row no-gutters justify="space-around" class="button-pos">
|
2024-04-01 13:16:47 +02:00
|
|
|
<v-icon color="BuzzerRed">mdi-radiobox-marked</v-icon>
|
|
|
|
<v-icon color="BuzzerBlue">mdi-radiobox-marked</v-icon>
|
|
|
|
<v-icon color="BuzzerOrange">mdi-radiobox-marked</v-icon>
|
|
|
|
<v-icon color="BuzzerGreen">mdi-radiobox-marked</v-icon>
|
2024-03-23 16:21:31 +01:00
|
|
|
</v-row>
|
|
|
|
|
|
|
|
<v-divider :thickness="2" class="border-opacity-100" color="primary"/>
|
2024-04-01 17:40:18 +02:00
|
|
|
|
2024-04-05 14:33:54 +02:00
|
|
|
<CardScore/>
|
2024-04-05 15:00:41 +02:00
|
|
|
|
2024-04-05 14:33:54 +02:00
|
|
|
<CardTimer/>
|
2024-02-23 17:33:03 +01:00
|
|
|
</v-navigation-drawer>
|
|
|
|
</template>
|
2024-03-23 16:21:31 +01:00
|
|
|
|
2024-04-01 13:16:47 +02:00
|
|
|
<script setup>
|
2024-04-05 14:29:08 +02:00
|
|
|
import CardTimer from '@/components/CardTimer.vue'
|
2024-04-05 14:33:54 +02:00
|
|
|
import CardScore from '@/components/CardScore.vue'
|
2024-04-05 14:12:22 +02:00
|
|
|
import { ref } from 'vue'; // Import des fonctions de Vue 3
|
2024-04-01 15:03:27 +02:00
|
|
|
import variables from '@/variables.js';
|
2024-04-01 13:16:47 +02:00
|
|
|
|
|
|
|
</script>
|
2024-03-23 16:21:31 +01:00
|
|
|
|
|
|
|
<style>
|
2024-04-05 14:12:22 +02:00
|
|
|
.label-pos {
|
2024-03-23 16:21:31 +01:00
|
|
|
padding-top: 15px;
|
|
|
|
text-align: center;
|
|
|
|
}
|
2024-04-05 14:12:22 +02:00
|
|
|
.labelTitle-style {
|
2024-03-23 16:21:31 +01:00
|
|
|
font-size: 20px !important;
|
|
|
|
font-weight: 500;
|
|
|
|
color: #e91e1e !important;
|
|
|
|
opacity: 90% !important;
|
|
|
|
}
|
2024-04-05 14:12:22 +02:00
|
|
|
.button-pos {
|
2024-03-23 16:21:31 +01:00
|
|
|
padding-top: 10px;
|
|
|
|
padding-bottom: 15px;
|
2024-04-01 13:16:47 +02:00
|
|
|
}
|
2024-03-23 16:21:31 +01:00
|
|
|
</style>
|