Fix auth layout on mobile (#1316)

This commit is contained in:
Prospector 2023-08-20 12:23:06 -07:00 committed by GitHub
parent 3649573ba1
commit cfbf08dbf5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -4,8 +4,9 @@
<style>
.auth-container {
width: 30rem;
margin: 2rem auto;
width: 26rem;
max-width: calc(100% - 2rem);
margin: 1rem auto;
display: flex;
flex-direction: column;
gap: 2rem;
@ -79,5 +80,6 @@
display: flex;
justify-content: center;
gap: var(--gap-md);
flex-wrap: wrap;
}
</style>