@@ -17,9 +17,6 @@ const props = defineProps({
1717const bgStyles = computed (() => {
1818 return {
1919 style: {
20- position: " absolute" ,
21- top: " 0" ,
22- left: " 0" ,
2320 filter: " grayscale(1)" ,
2421 opacity: " 0.05" ,
2522 },
@@ -30,12 +27,12 @@ const messages = computed(() => [...new Set(props.tx.message_types)])
3027 </script >
3128
3229<template >
33- <div class =" w-full h-full" :style =" { background: '#111111', padding: '100px 120px ', fontFamily: 'IBM+Plex+Mono' }" >
34- <img src =" /img/bg.png" v-bind =" bgStyles" />
30+ <div class =" w-full h-full" :style =" { background: '#111111', padding: '100px', fontFamily: 'IBM+Plex+Mono', overflow: 'hidden ' }" >
31+ <img src =" /img/bg.png" width = " 1200 " height = " 600 " class = " absolute " v-bind =" bgStyles" />
3532
3633 <div :style =" { height: '100%', display: 'flex', flexDirection: 'column', gap: '40px' }" >
37- <div :style = " { display: ' flex', alignItems: ' center', gap: '24px' }" >
38- <div :style = " { display: ' flex', alignItems: ' center' } " >
34+ <div class = " flex flex-row items- center" :style = " { gap: '24px' }" >
35+ <div class = " flex items- center flex-nowrap " >
3936 <span :style =" { fontSize: '70px', color: 'rgba(255,255,255, 0.9)' }" > tx </span >
4037 <span :style =" { fontSize: '70px', color: 'rgba(255,255,255, 0.3)' }" >('</span >
4138 <span :style =" { fontSize: '70px', color: '#FF8351' }" >
@@ -76,9 +73,11 @@ const messages = computed(() => [...new Set(props.tx.message_types)])
7673 </span >
7774 </div >
7875
79- <span :style =" { fontSize: '40px', color: 'rgba(255,255,255, 0.4)' }" >{{ DateTime.fromISO(tx.time).toFormat("ff") }}</span >
76+ <span :style =" { fontSize: '40px', marginBottom: '40px', color: 'rgba(255,255,255, 0.4)' }" >{{
77+ DateTime.fromISO(tx.time).toFormat("ff")
78+ }}</span >
8079
81- <div :style = " { display: ' flex', flexDirection: 'column', gap: '24px' }" >
80+ <div class = " flex flex-col " :style = " { gap: '24px' }" >
8281 <div :style =" { display: 'flex', gap: '12px' }" >
8382 <span :style =" { fontSize: '40px', color: 'rgba(255,255,255, 0.3)' }" >Fee: </span >
8483 <span :style =" { fontSize: '40px', color: 'rgba(255,255,255, 0.6)' }" >{{ tia(tx.fee) }} </span >
0 commit comments