diff --git a/src/components/tx-flow/flows/NewTx/index.tsx b/src/components/tx-flow/flows/NewTx/index.tsx index c10b7334f3..ceaba3b1dd 100644 --- a/src/components/tx-flow/flows/NewTx/index.tsx +++ b/src/components/tx-flow/flows/NewTx/index.tsx @@ -6,6 +6,7 @@ import { Box, Typography } from '@mui/material' import { TxModalContext } from '../../' import TokenTransferFlow from '../TokenTransfer' import { AppRoutes } from '@/config/routes' +import css from './styles.module.css' const BUTTONS_HEIGHT = '91px' @@ -23,7 +24,7 @@ const NewTxMenu = () => { }, [setTxFlow]) return ( - + New transaction diff --git a/src/components/tx-flow/flows/NewTx/styles.module.css b/src/components/tx-flow/flows/NewTx/styles.module.css new file mode 100644 index 0000000000..a7bcddbdd2 --- /dev/null +++ b/src/components/tx-flow/flows/NewTx/styles.module.css @@ -0,0 +1,15 @@ +.wrapper { + display: flex; + flex-direction: column; + align-items: center; + gap: var(--space-2); + width: 100%; + margin: auto; + padding: 0 var(--space-2); +} + +@media (min-width: 600px) { + .wrapper { + width: 452px; + } +}