@@ -93,11 +93,11 @@ export function DestinationTransactionCard({
93
93
} else if ( status === MessageStatus . Failing ) {
94
94
content = (
95
95
< DeliveryStatus >
96
- < div className = "text-sm text-gray-800 leading-relaxed " > { `Delivery to destination chain seems to be failing ${
96
+ < div className = "text-sm leading-relaxed text-gray-800" > { `Delivery to destination chain seems to be failing ${
97
97
debugResult ? ': ' + debugStatusToDesc [ debugResult . status ] : ''
98
98
} `} </ div >
99
99
{ ! ! debugResult ?. description && (
100
- < div className = "mt-5 text-sm text-gray-800 text-center leading-relaxed break-words " >
100
+ < div className = "mt-5 break-words text-center text-sm leading-relaxed text-gray-800 " >
101
101
{ debugResult . description }
102
102
</ div >
103
103
) }
@@ -110,10 +110,10 @@ export function DestinationTransactionCard({
110
110
< DeliveryStatus >
111
111
< div className = "flex flex-col items-center" >
112
112
< div > Delivery status is unknown.</ div >
113
- < div className = "mt-2 text-sm max-w-xs" >
113
+ < div className = "mt-2 max-w-xs text-sm " >
114
114
Permissionless Interoperability (PI) chains require a config.
115
115
</ div >
116
- < div className = "mt-2 mb-6 text-sm max-w-xs" >
116
+ < div className = "mb-6 mt-2 max-w-xs text-sm " >
117
117
Please{ ' ' }
118
118
< button className = "underline underline-offset-2" onClick = { open } >
119
119
add metadata
@@ -133,7 +133,7 @@ export function DestinationTransactionCard({
133
133
< div className = "flex flex-col items-center" >
134
134
< div > Delivery to destination chain still in progress.</ div >
135
135
{ isPiMsg && (
136
- < div className = "mt-2 text-sm max-w-xs" >
136
+ < div className = "mt-2 max-w-xs text-sm " >
137
137
Please ensure a relayer is running for this chain.
138
138
</ div >
139
139
) }
@@ -146,7 +146,7 @@ export function DestinationTransactionCard({
146
146
content = (
147
147
< DeliveryStatus >
148
148
< div > Delivery to status is currently unknown.</ div >
149
- < div className = "mt-2 text-sm pb-4" >
149
+ < div className = "mt-2 pb-4 text-sm " >
150
150
{ isPiMsg
151
151
? 'Please ensure your chain config is correct and check back later.'
152
152
: 'Please check again later' }
@@ -173,13 +173,13 @@ function TransactionCard({
173
173
children,
174
174
} : PropsWithChildren < { chainId : ChainId ; title : string ; helpText : string } > ) {
175
175
return (
176
- < Card className = "flex flex-col flex-1 min-w-fit space-y-3" >
176
+ < Card className = "flex min-w-fit flex-1 flex-col space-y-3" >
177
177
< div className = "flex items-center justify-between" >
178
- < div className = "relative -top-px - left-0.5" >
178
+ < div className = "relative -left-0.5 -top-px " >
179
179
< ChainLogo chainId = { chainId } />
180
180
</ div >
181
181
< div className = "flex items-center pb-1" >
182
- < h3 className = "text-blue-500 font-medium text-md mr-2 " > { title } </ h3 >
182
+ < h3 className = "mr-2 text-md font-medium text-blue-500 " > { title } </ h3 >
183
183
< HelpIcon text = { helpText } />
184
184
</ div >
185
185
</ div >
@@ -289,7 +289,7 @@ function TransactionDetails({
289
289
function DeliveryStatus ( { children } : PropsWithChildren < unknown > ) {
290
290
return (
291
291
< >
292
- < div className = "pb-2 flex-1 flex flex -col items-center justify-center text-gray-700 font-light text-center " >
292
+ < div className = "flex flex-1 flex-col items-center justify-center pb-2 text-center font-light text-gray-700 " >
293
293
< div className = "max-w-sm" > { children } </ div >
294
294
</ div >
295
295
</ >
0 commit comments