77 :bordered =" false"
88 content-style =" padding: 0;"
99 >
10- <n-space
11- v-if =" store.displayHeader"
12- class =" header"
13- justify =" center"
14- align =" center"
15- >
10+ <n-space v-if =" store.displayHeader" class =" header" justify =" center" align =" center" >
1611 {{ eventStore.name.length ? eventStore.name : eventStore.type }}
1712 </n-space >
1813
1914 <n-space class =" teams-wrapper" justify =" space-between" align =" center" :wrap =" false" >
2015 <team-info :team =" store.teamLeft" />
2116
2217 <n-space class =" middle-wrapper" vertical align =" center" :wrap =" false" >
23- <div
24- v-if =" store.displayGlobalTimer"
25- class =" timer global-timer"
26- >
18+ <div v-if =" store.displayGlobalTimer" class =" timer global-timer" >
2719 {{ formatTimer(store.globalTimer, { showHours: true }) }}
2820 </div >
2921
3527 <div v-if =" store.displayFooter" class =" footer" >
3628 <div class =" footer-left" >
3729 <div >
38- <span >Type :</span >
30+ <span class = " item-title " >Type :</span >
3931 {{ store.type }}
4032 </div >
4133 <div >
42- <span >Catégorie :</span >
34+ <span class = " item-title " >Catégorie :</span >
4335 {{ store.category }}
4436 </div >
4537 </div >
4840 <div class =" footer-center-theme" >{{ store.theme }}</div >
4941 </div >
5042 <div class =" footer-right" >
51- <div >Nb. de personnes :</div >
43+ <div class = " item-title " >Nb. de personnes :</div >
5244 <div >{{ store.playerCount.length ? store.playerCount : 'Illimité' }}</div >
5345 <!-- <div><span>Type :</span> {{ store.type }}</div> -->
5446 </div >
@@ -76,6 +68,7 @@ const eventStore = useEventStore();
7668
7769<style lang="less" scoped>
7870@hr : 4px solid hsla (0 , 0% , 100% , 0.12 );
71+
7972.fullpage-centered {
8073 width : 100% ;
8174 height : 100vh ;
@@ -89,11 +82,8 @@ const eventStore = useEventStore();
8982}
9083
9184.scale-wrapper {
92- transform : scale (v-bind(" store.zoom" ))
93- translate (
94- calc (v-bind(" store.offsetX" ) * 100vw ),
95- calc (v- bind(" store.offsetY" ) * 100vh )
96- );
85+ transform : scale (v-bind(" store.zoom" )) translate (calc (v-bind(" store.offsetX" ) * 100vw ),
86+ calc (v- bind(" store.offsetY" ) * 100vh ));
9787}
9888
9989.main-card {
@@ -120,10 +110,12 @@ const eventStore = useEventStore();
120110 flex-direction : row ;
121111 align-items : center ;
122112 justify-content : space-between ;
113+ font-size : 26px ;
123114
124115 .footer-left {
125116 width : 25% ;
126117 }
118+
127119 .footer-center {
128120 width : 50% ;
129121 text-align : center ;
@@ -133,6 +125,7 @@ const eventStore = useEventStore();
133125 color : hsla (0 , 0% , 100% , 0.8 );
134126 }
135127 }
128+
136129 .footer-right {
137130 width : 25% ;
138131 text-align : right ;
@@ -144,10 +137,12 @@ const eventStore = useEventStore();
144137
145138 .middle-wrapper {
146139 z-index : 50 ;
140+
147141 .timer {
148142 line-height : 1 ;
149143 font-family : monospace ;
150144 }
145+
151146 .current-timer {
152147 border-radius : 20px ;
153148 font-size : 110px ;
0 commit comments