|
@@ -1,5 +1,5 @@
|
|
|
import React from 'react';
|
|
import React from 'react';
|
|
|
-import { Button } from 'antd';
|
|
|
|
|
|
|
+import { Button,Flex } from 'antd';
|
|
|
import { useDispatch } from 'react-redux';
|
|
import { useDispatch } from 'react-redux';
|
|
|
import { switchToSendPanel } from '../../../states/panelSwitchSliceForView';
|
|
import { switchToSendPanel } from '../../../states/panelSwitchSliceForView';
|
|
|
import { useButtonAvailability } from '@/utils/useButtonAvailability';
|
|
import { useButtonAvailability } from '@/utils/useButtonAvailability';
|
|
@@ -16,7 +16,7 @@ const TransferArea = () => {
|
|
|
};
|
|
};
|
|
|
|
|
|
|
|
return (
|
|
return (
|
|
|
- <div className="transfer-area">
|
|
|
|
|
|
|
+ <Flex wrap gap="small" align="center" justify="start" className="p-1">
|
|
|
<Button
|
|
<Button
|
|
|
style={{
|
|
style={{
|
|
|
width: '1.5rem',
|
|
width: '1.5rem',
|
|
@@ -29,7 +29,7 @@ const TransferArea = () => {
|
|
|
>
|
|
>
|
|
|
Send
|
|
Send
|
|
|
</Button>
|
|
</Button>
|
|
|
- </div>
|
|
|
|
|
|
|
+ </Flex>
|
|
|
);
|
|
);
|
|
|
};
|
|
};
|
|
|
|
|
|