|
1 | 1 | <script lang="ts" setup> |
| 2 | +import { Impro } from '@/models/Impro.model'; |
| 3 | +import ImproList from '@/modules/shared/components/ImproList.vue'; |
2 | 4 | import { useDashboardStore } from '@/stores/dashboard.store'; |
3 | 5 | import { useEventStore } from '@/stores/event.store'; |
4 | | -import { useControlsStore } from './controls.store'; |
| 6 | +import { currentMillisToUTCMillis, utcMillisToCurrentMillis } from '@/utils/date'; |
5 | 7 | import { ArrowUpRight, Lock } from '@vicons/tabler'; |
6 | | -import ColorPicker from './components/ColorPicker.vue'; |
7 | | -import TeamControl from './components/TeamControl.vue'; |
8 | | -import HorizontalTimer from './components/HorizontalTimer.vue'; |
9 | | -import EditableTimer from './components/EditableTimer.vue'; |
10 | 8 | import CategoryAutoComplete from '../shared/components/CategoryAutoComplete.vue'; |
11 | | -import TypeAutoComplete from '../shared/components/TypeAutoComplete.vue'; |
12 | 9 | import PlayerCountComplete from '../shared/components/PlayerCountComplete.vue'; |
13 | | -import { currentMillisToUTCMillis, utcMillisToCurrentMillis } from '@/utils/date'; |
14 | | -import ImproList from '@/modules/shared/components/ImproList.vue'; |
15 | | -import { Impro } from '@/models/Impro.model'; |
| 10 | +import TypeAutoComplete from '../shared/components/TypeAutoComplete.vue'; |
| 11 | +import ColorPicker from './components/ColorPicker.vue'; |
| 12 | +import EditableTimer from './components/EditableTimer.vue'; |
| 13 | +import HorizontalTimer from './components/HorizontalTimer.vue'; |
| 14 | +import TeamControl from './components/TeamControl.vue'; |
| 15 | +import { useControlsStore } from './controls.store'; |
16 | 16 |
|
17 | 17 | const dashboardStore = useDashboardStore(); |
18 | 18 | const eventStore = useEventStore(); |
@@ -130,6 +130,13 @@ function loadImpro(impro: Impro) { |
130 | 130 | :format-tooltip="(v: number) => `${Math.floor(v * 100)}%`" |
131 | 131 | /> |
132 | 132 | </n-form-item> |
| 133 | + |
| 134 | + <n-form-item label="Taille des indications"> |
| 135 | + <n-input-number v-model:value="dashboardStore.footerFontSize" style="width: 100%" /> |
| 136 | + </n-form-item> |
| 137 | + <n-form-item label="Taille du thème"> |
| 138 | + <n-input-number v-model:value="dashboardStore.themeFontSize" style="width: 100%" /> |
| 139 | + </n-form-item> |
133 | 140 | </n-gi> |
134 | 141 | <n-gi> |
135 | 142 | <n-form-item label="Afficher le header"> |
|
0 commit comments