Skip to content

Commit d6f09f0

Browse files
authored
style: add padding for footer of Approve page of Staking. (#6708)
1 parent a9c9bfc commit d6f09f0

File tree

1 file changed

+2
-2
lines changed
  • packages/kit/src/views/Staking/components/ApproveBaseStake

1 file changed

+2
-2
lines changed

packages/kit/src/views/Staking/components/ApproveBaseStake/index.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ import type {
2727
} from '@onekeyhq/shared/types/staking';
2828
import type { IToken } from '@onekeyhq/shared/types/token';
2929

30+
import { validateAmountInput } from '../../../Swap/utils/utils';
3031
import { useTrackTokenAllowance } from '../../hooks/useUtilsHooks';
3132
import { capitalizeString, countDecimalPlaces } from '../../utils/utils';
3233
import { CalculationList, CalculationListItem } from '../CalculationList';
@@ -39,7 +40,6 @@ import { EStakeProgressStep, StakeProgress } from '../StakeProgress';
3940
import StakingFormWrapper from '../StakingFormWrapper';
4041
import { TradeOrBuy } from '../TradeOrBuy';
4142
import { ValuePriceListItem } from '../ValuePriceListItem';
42-
import { validateAmountInput } from '../../../Swap/utils/utils';
4343

4444
type IApproveBaseStakeProps = {
4545
details: IStakeProtocolDetails;
@@ -498,7 +498,7 @@ export function ApproveBaseStake({
498498
jc: 'space-between',
499499
}}
500500
>
501-
<Stack pl="$5">
501+
<Stack pl="$5" $md={{ pt: '$5' }}>
502502
{isShowStakeProgress ? (
503503
<StakeProgress
504504
currentStep={

0 commit comments

Comments
 (0)