Skip to content

Commit 89e8240

Browse files
committed
Fix style
1 parent 54a1f60 commit 89e8240

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

src/ui/pages/ActionInfo/ActionInfo.tsx

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,11 @@ function AssetContent({
5656
}) {
5757
if (fungible) {
5858
return (
59-
<HStack gap={12} alignItems="center" style={{ position: 'relative' }}>
59+
<HStack
60+
gap={12}
61+
alignItems="center"
62+
style={{ position: 'relative', height: 44 }}
63+
>
6064
<TokenIcon size={36} src={fungible.iconUrl} symbol={fungible.symbol} />
6165
<VStack gap={0}>
6266
<UIText
@@ -97,7 +101,7 @@ function AssetContent({
97101

98102
if (nft) {
99103
return (
100-
<HStack gap={12} alignItems="center">
104+
<HStack gap={12} alignItems="center" style={{ height: 44 }}>
101105
<TokenIcon
102106
size={36}
103107
src={nft.metadata?.content?.imagePreviewUrl}
@@ -136,7 +140,7 @@ function AssetContent({
136140

137141
if (collection) {
138142
return (
139-
<HStack gap={12} alignItems="center">
143+
<HStack gap={12} alignItems="center" style={{ height: 44 }}>
140144
<TokenIcon
141145
size={36}
142146
src={collection.iconUrl}

0 commit comments

Comments
 (0)