center withdraw button text
This commit is contained in:
parent
d5523db43a
commit
cf1671ae47
|
@ -104,13 +104,13 @@ const Layout = ({ children }) => {
|
||||||
{mangoAccount && canWithdraw && !isMobile ? (
|
{mangoAccount && canWithdraw && !isMobile ? (
|
||||||
<div className="flex space-x-2">
|
<div className="flex space-x-2">
|
||||||
<Button
|
<Button
|
||||||
className="h-8 w-24 pl-3 pr-3 text-xs"
|
className="flex h-8 w-24 items-center justify-center pl-3 pr-3 text-xs"
|
||||||
onClick={() => setShowDepositModal(true)}
|
onClick={() => setShowDepositModal(true)}
|
||||||
>
|
>
|
||||||
{t('deposit')}
|
{t('deposit')}
|
||||||
</Button>
|
</Button>
|
||||||
<Button
|
<Button
|
||||||
className="h-8 w-24 border border-th-fgd-4 bg-transparent pl-3 pr-3 text-xs"
|
className="flex h-8 w-24 items-center justify-center border border-th-fgd-4 bg-transparent pl-3 pr-3 text-xs"
|
||||||
onClick={() => setShowWithdrawModal(true)}
|
onClick={() => setShowWithdrawModal(true)}
|
||||||
>
|
>
|
||||||
{t('withdraw')}
|
{t('withdraw')}
|
||||||
|
|
|
@ -112,7 +112,7 @@ module.exports = {
|
||||||
'short-profit': "url('/share_images/bg-short-profit.png')",
|
'short-profit': "url('/share_images/bg-short-profit.png')",
|
||||||
},
|
},
|
||||||
screens: {
|
screens: {
|
||||||
xl: '1536px',
|
xl: '1600px',
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in New Issue