Skip to content

Commit 3796be9

Browse files
committed
alert styling
1 parent 5abde23 commit 3796be9

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

src/components/alerts/InstallWalletAlerts.tsx

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
import type { AlertProps } from '@mui/material'
22
import {
33
Alert, AlertTitle, Button, Link, List, ListItem,
4+
Stack,
45
} from '@mui/material'
56

67
const InstallWalletAlert: React.FC<AlertProps> = (props) => {
@@ -12,7 +13,9 @@ const InstallWalletAlert: React.FC<AlertProps> = (props) => {
1213
<Link href="https://chromewebstore.google.com/detail/xl1-wallet/fblbagcjeigmhakkfgjpdlcapcgmcfbm" target="_blank">wallet</Link>
1314
{' '}
1415
from the chrome web store to use this site.
15-
<Button variant="contained" onClick={() => globalThis.location.reload()}>Refresh</Button>
16+
<Stack alignItems="start" mt={1}>
17+
<Button variant="contained" onClick={() => globalThis.location.reload()}>Refresh</Button>
18+
</Stack>
1619
</Alert>
1720
)
1821
}

0 commit comments

Comments
 (0)