@@ -140,11 +140,11 @@ onMounted(async () => {
140
140
141
141
<template >
142
142
<div
143
- class =" relative w-full max-w-screen-lg rounded-xl bg-white p-4 text-black shadow @container/clb_result_modal "
143
+ class =" @container/clb_result_modal relative w-full max-w-screen-lg rounded-xl bg-white p-4 text-black shadow"
144
144
>
145
145
<a
146
146
:href =" props.base ?? '/'"
147
- class =" absolute -top -10 -right -10 w-8 h-8 flex items-center justify-center hover:bg-none"
147
+ class =" absolute -right -10 -top -10 flex h-8 w-8 items-center justify-center hover:bg-none"
148
148
>
149
149
<svg
150
150
xmlns =" http://www.w3.org/2000/svg"
@@ -163,23 +163,23 @@ onMounted(async () => {
163
163
</a >
164
164
165
165
<div
166
- class =" bg-color-navy relative mb-6 flex h-auto min-h-52 w-full flex-col items-center justify-center overflow-hidden rounded-md border border-black p-2 @xl/clb_result_modal:h-96 @xl/clb_result_modal:min-h-0 @xl/clb_result_modal:p-8 "
166
+ class =" bg-color-navy @xl/clb_result_modal:h-96 @xl/clb_result_modal:min-h-0 @xl/clb_result_modal:p-8 relative mb-6 flex h-auto min-h-52 w-full flex-col items-center justify-center overflow-hidden rounded-md border border-black p-2"
167
167
>
168
168
<div
169
169
class =" w-h-screen bg-focus-lines origin-zero animate-spin-slow mask absolute inset-2/4 -translate-x-1/2 -translate-y-1/2 bg-center bg-no-repeat"
170
170
></div >
171
171
<h3 class =" mb-1 text-white" >
172
172
<span
173
173
v-if =" name"
174
- class =" text-xl italic @xl/clb_result_modal:text-3xl"
174
+ class =" @xl/clb_result_modal:text-3xl text-xl italic "
175
175
>{{ name }}</span
176
176
>
177
177
</h3 >
178
178
<!-- image -->
179
179
<img
180
180
v-if =" imageSrc"
181
181
ref =" imageRef"
182
- class =" z-10 max-h-60 min-h-full max-w-60 object-contain @xl/clb_result_modal:max-h-none @xl/clb_result_modal:max-w-xl "
182
+ class =" @xl/clb_result_modal:max-h-none @xl/clb_result_modal:max-w-xl z-10 max-h-60 min-h-full max-w-60 object-contain"
183
183
/>
184
184
<!-- video -->
185
185
<VideoFetch
@@ -191,7 +191,7 @@ onMounted(async () => {
191
191
{{ i18n('PurchaseGreeting') }}
192
192
</span >
193
193
</div >
194
- <div class =" flex flex-col gap-6 px-0 @4xl/clb_result_modal:px-52 " >
194
+ <div class =" @4xl/clb_result_modal:px-52 flex flex-col gap-6 px-0" >
195
195
<!-- description -->
196
196
<aside
197
197
v-if =" description"
@@ -208,34 +208,34 @@ onMounted(async () => {
208
208
<slot name =" after:description" />
209
209
210
210
<div
211
- class =" flex w-full flex-col gap-4 @4xl/clb_result_modal:flex-row @4xl/clb_result_modal:justify-between @4xl/clb_result_modal:gap-0"
211
+ class =" @4xl/clb_result_modal:flex-row @4xl/clb_result_modal:justify-between @4xl/clb_result_modal:gap-0 flex w-full flex-col gap-4 "
212
212
>
213
213
<a
214
214
v-if =" cronFinished"
215
215
:href =" passportPageUrl"
216
- class =" hs-button is-filled rounded-lg border px-0 py-4 text-base @4xl/clb_result_modal:px-12 @4xl/clb_result_modal:py-6"
216
+ class =" hs-button is-filled @4xl/clb_result_modal:px-12 @4xl/clb_result_modal:py-6 rounded-lg border px-0 py-4 text-base "
217
217
>
218
218
{{ i18n('Passport') }}
219
219
</a >
220
220
<button
221
221
v-if =" !cronFinished"
222
222
@click =" onClickPassport"
223
223
:disabled =" clicked"
224
- class =" hs-button is-filled items-center justify-center gap-2 rounded-lg border px-0 py-4 text-base disabled:animate-pulse disabled:bg-blue-600 @4xl/clb_result_modal:px-12 @4xl/clb_result_modal:py-6 "
224
+ class =" hs-button is-filled @4xl/clb_result_modal:px-12 @4xl/clb_result_modal:py-6 items-center justify-center gap-2 rounded-lg border px-0 py-4 text-base disabled:animate-pulse disabled:bg-blue-600"
225
225
>
226
226
{{ i18n('Passport') }}
227
227
<Spinner v-if =" clicked" />
228
228
</button >
229
229
<a
230
230
:href =" props.base ?? '/'"
231
- class =" hs-button is-filled rounded-lg border px-12 py-4 text-base @4xl/clb_result_modal:py-6 "
231
+ class =" hs-button is-filled @4xl/clb_result_modal:py-6 rounded-lg border px-12 py-4 text-base"
232
232
>
233
233
{{ i18n('ContinueShopping') }}
234
234
</a >
235
235
<button
236
236
v-if =" false /* HIDDEN FOR NOW */"
237
237
@click =" modalClose"
238
- class =" hs-button is-filled rounded-lg border px-12 py-4 text-base @4xl/clb_result_modal:py-6 "
238
+ class =" hs-button is-filled @4xl/clb_result_modal:py-6 rounded-lg border px-12 py-4 text-base"
239
239
>
240
240
{{ i18n('Close') }}
241
241
</button >
0 commit comments