improve position of api not connected error message

This commit is contained in:
Michael Schramm 2021-05-04 18:15:15 +02:00
parent 31a84fb520
commit b0f0ff2a50

View File

@ -70,7 +70,10 @@ const Index: NextPage = () => {
/>
{status.error && (
<Alert message={`There is an error with your API connection: ${status.error.message}`} />
<Alert
message={`There is an error with your API connection: ${status.error.message}`}
style={{ marginBottom: 40, marginLeft: 16, marginRight: 16 }}
/>
)}
<AuthFooter />
</Layout>