File tree Expand file tree Collapse file tree 2 files changed +9
-7
lines changed Expand file tree Collapse file tree 2 files changed +9
-7
lines changed Original file line number Diff line number Diff line change @@ -265,7 +265,7 @@ export const Spin: React.FC = () => {
265
265
</ Dialog >
266
266
< div className = 'flex flex-col items-center overflow-hidden relative' >
267
267
< img
268
- className = 'mt-4 max-w-40 '
268
+ className = 'mt-4 max-w-32 '
269
269
src = 'https://resources.smartlayer.network/smart-token-store/images/redbrick-spin/logo.png'
270
270
alt = 'logo'
271
271
/>
@@ -274,27 +274,29 @@ export const Spin: React.FC = () => {
274
274
src = 'https://resources.smartlayer.network/smart-token-store/images/redbrick-spin/machine-body.png'
275
275
alt = 'machine-body'
276
276
/>
277
- < CountDown />
277
+ < div className = 'top-[456px] absolute' >
278
+ < CountDown />
279
+ </ div >
278
280
{ messageOrButton }
279
281
< img
280
- className = 'max-w-[19rem] top-44 absolute'
282
+ className = 'max-w-[19rem] top-[158px] absolute'
281
283
src = 'https://resources.smartlayer.network/smart-token-store/images/redbrick-spin/cover.png'
282
284
alt = 'cover'
283
285
/>
284
- < div className = 'max-w-52 top-56 absolute' >
286
+ < div className = 'max-w-52 top-[206px] absolute' >
285
287
< Spinner
286
288
isSpinning = { isSpinning }
287
289
itemIndex = { itemIndex }
288
290
onSpinEnd = { onSpinEnd }
289
291
/>
290
292
</ div >
291
293
< img
292
- className = 'max-w-16 top-[170px ] absolute z-10'
294
+ className = 'max-w-16 top-[154px ] absolute z-10'
293
295
src = 'https://resources.smartlayer.network/smart-token-store/images/redbrick-spin/arrow.png'
294
296
alt = 'arrow'
295
297
/>
296
298
< img
297
- className = 'max-w-16 top-[296px ] absolute z-10'
299
+ className = 'max-w-16 top-[278px ] absolute z-10'
298
300
src = 'https://resources.smartlayer.network/smart-token-store/images/redbrick-spin/pin.png'
299
301
alt = 'pin'
300
302
/>
Original file line number Diff line number Diff line change @@ -36,7 +36,7 @@ export default function CountDown() {
36
36
} , [ targetTime ] ) ;
37
37
38
38
return (
39
- < div className = 'absolute top-[472px] flex gap-4 items-center' >
39
+ < div className = 'flex gap-4 items-center' >
40
40
< div className = "text-gray-200 text-md" > Game reset:</ div >
41
41
< div className = "text-white text-lg font-semibold" > { timeLeft } </ div >
42
42
</ div >
You can’t perform that action at this time.
0 commit comments