From 6c40735ffe08a518b655491177debd46363e583b Mon Sep 17 00:00:00 2001 From: ECWireless Date: Sun, 18 Jan 2026 12:12:39 -0700 Subject: [PATCH 1/2] fix: tweak StakeTransactions component for mobile --- components/StakeTransactions/index.tsx | 127 ++++++++++++++++++++----- 1 file changed, 101 insertions(+), 26 deletions(-) diff --git a/components/StakeTransactions/index.tsx b/components/StakeTransactions/index.tsx index 529f227e..16b9492a 100644 --- a/components/StakeTransactions/index.tsx +++ b/components/StakeTransactions/index.tsx @@ -60,9 +60,16 @@ const Index = ({ delegator, transcoders, currentRound, isMyAccount }) => { > @@ -75,24 +82,56 @@ const Index = ({ delegator, transcoders, currentRound, isMyAccount }) => { days. - - {isMyAccount && - (isBonded ? ( - - ) : ( - - ))} - - {" "} + + {isMyAccount && ( + + {isBonded ? ( + + ) : ( + + )} + + )} + {abbreviateNumber(lock.amount, 4)} {" "} @@ -132,16 +171,45 @@ const Index = ({ delegator, transcoders, currentRound, isMyAccount }) => { > Undelegated from {formatAddress(lock.delegate.id)} - + {isMyAccount && ( - <> + {isBonded ? ( { /> )} - + )} - - {" "} + {abbreviateNumber(lock.amount, 3)} {" "} From 4c0b8a3431f6ee34ce1d4411e136acc45ede100f Mon Sep 17 00:00:00 2001 From: ECWireless Date: Sun, 18 Jan 2026 12:19:50 -0700 Subject: [PATCH 2/2] fix: remove unnecessary justifyContent --- components/StakeTransactions/index.tsx | 2 -- 1 file changed, 2 deletions(-) diff --git a/components/StakeTransactions/index.tsx b/components/StakeTransactions/index.tsx index 16b9492a..d73c7e8a 100644 --- a/components/StakeTransactions/index.tsx +++ b/components/StakeTransactions/index.tsx @@ -87,7 +87,6 @@ const Index = ({ delegator, transcoders, currentRound, isMyAccount }) => { alignItems: "center", flexDirection: "column", gap: "$2", - justifyContent: "space-between", width: "100%", "@bp2": { flexDirection: "row", @@ -190,7 +189,6 @@ const Index = ({ delegator, transcoders, currentRound, isMyAccount }) => { alignItems: "center", flexDirection: "column", gap: "$2", - justifyContent: "space-between", width: "100%", "@bp2": { flexDirection: "row",