Skip to content

Commit 5e95ae6

Browse files
committed
fix eslint error
1 parent b5ea9fa commit 5e95ae6

File tree

3 files changed

+64
-61
lines changed

3 files changed

+64
-61
lines changed

app/components/TopPageSection.vue

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,10 @@
1919
{{ eventDate }}
2020
</p>
2121
</div>
22-
<p v-if="LIVE_YOUTUBE" class="text-[5.7vw] font-bold text-center text-vue-blue md:text-[2.5rem]">
22+
<p
23+
v-if="LIVE_YOUTUBE"
24+
class="text-[5.7vw] font-bold text-center text-vue-blue md:text-[2.5rem]"
25+
>
2326
{{ streamingNow }}
2427
</p>
2528
<div class="flex flex-wrap gap-x-[3.125rem] gap-y-4 justify-center mt-4 mb-12 md:gap-y-7 lg:gap-y-7 lg:mt-6">

app/components/speakers/SpeakerLTSection.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import LinkButtonField from '~/components/forms/LinkButtonField.vue'
55

66
<template>
77
<section class="p-4 border border-vue-blue md:px-10 lg:py-10 lg:px-20">
8-
<h3 class="mx-auto -mt-[2.0rem] mb-6 w-[14.375rem] text-xl font-bold text-center text-vue-blue md:mb-8 lg:-mt-[3.6rem] lg:mb-14 lg:w-[26.875rem] lg:text-4xl bg-img">
8+
<h3 class="mx-auto mt-[-2.0rem] mb-6 w-[14.375rem] text-xl font-bold text-center text-vue-blue md:mb-8 lg:mt-[-3.6rem] lg:mb-14 lg:w-[26.875rem] lg:text-4xl bg-img">
99
LT募集について
1010
</h3>
1111
<p class="mb-8 text-sm leading-7 text-vue-blue lg:mb-12 lg:text-lg lg:leading-8">

app/composables/useAnimation.ts

Lines changed: 59 additions & 59 deletions
Original file line numberDiff line numberDiff line change
@@ -103,65 +103,65 @@ export function useAnimation() {
103103
key: `${row}-${col}`,
104104
}
105105
switch (p) {
106-
case '⮽':
107-
parts.type = 'head-cross'
108-
break
109-
case '⧅':
110-
parts.type = 'head-slash'
111-
parts.rotate = 90
112-
break
113-
case '⧄':
114-
parts.type = 'head-slash'
115-
break
116-
case '|':
117-
parts.type = 'head-horizontal'
118-
parts.rotate = 90
119-
break
120-
case 'o':
121-
parts.type = 'head-circle'
122-
break
123-
case '-':
124-
parts.type = 'head-horizontal'
125-
break
126-
case '◢':
127-
parts.type = 'head-triangle'
128-
break
129-
case '◥':
130-
parts.type = 'head-triangle'
131-
parts.rotate = 270
132-
break
133-
case '◣':
134-
parts.type = 'head-triangle'
135-
parts.rotate = 90
136-
break
137-
case '◤':
138-
parts.type = 'head-triangle'
139-
parts.rotate = 180
140-
break
141-
case '1':
142-
parts.type = 'head-photo'
143-
parts.src = 'image01.png'
144-
break
145-
case '2':
146-
parts.type = 'head-photo'
147-
parts.src = 'image02.png'
148-
break
149-
case '3':
150-
parts.type = 'head-photo'
151-
parts.src = 'image03.png'
152-
break
153-
case '4':
154-
parts.type = 'head-photo'
155-
parts.src = 'image04.png'
156-
break
157-
case '5':
158-
parts.type = 'head-photo'
159-
parts.src = 'image05.png'
160-
break
161-
case '6':
162-
parts.type = 'head-photo'
163-
parts.src = 'image06.png'
164-
break
106+
case '⮽':
107+
parts.type = 'head-cross'
108+
break
109+
case '⧅':
110+
parts.type = 'head-slash'
111+
parts.rotate = 90
112+
break
113+
case '⧄':
114+
parts.type = 'head-slash'
115+
break
116+
case '|':
117+
parts.type = 'head-horizontal'
118+
parts.rotate = 90
119+
break
120+
case 'o':
121+
parts.type = 'head-circle'
122+
break
123+
case '-':
124+
parts.type = 'head-horizontal'
125+
break
126+
case '◢':
127+
parts.type = 'head-triangle'
128+
break
129+
case '◥':
130+
parts.type = 'head-triangle'
131+
parts.rotate = 270
132+
break
133+
case '◣':
134+
parts.type = 'head-triangle'
135+
parts.rotate = 90
136+
break
137+
case '◤':
138+
parts.type = 'head-triangle'
139+
parts.rotate = 180
140+
break
141+
case '1':
142+
parts.type = 'head-photo'
143+
parts.src = 'image01.png'
144+
break
145+
case '2':
146+
parts.type = 'head-photo'
147+
parts.src = 'image02.png'
148+
break
149+
case '3':
150+
parts.type = 'head-photo'
151+
parts.src = 'image03.png'
152+
break
153+
case '4':
154+
parts.type = 'head-photo'
155+
parts.src = 'image04.png'
156+
break
157+
case '5':
158+
parts.type = 'head-photo'
159+
parts.src = 'image05.png'
160+
break
161+
case '6':
162+
parts.type = 'head-photo'
163+
parts.src = 'image06.png'
164+
break
165165
}
166166
return parts
167167
}),

0 commit comments

Comments
 (0)