Skip to content

Commit

Permalink
Fix OAuth login page width (#3894)
Browse files Browse the repository at this point in the history
Co-authored-by: Nikki Kang <kangaroo233@gmail.com>
  • Loading branch information
nicoback2 and nicoback committed Aug 16, 2023
1 parent deff919 commit 970f411
Showing 1 changed file with 7 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,9 @@
}

.wrapper {
margin: 0 auto;
justify-content: center;
width: 375px;
}

.centeredContent {
Expand Down Expand Up @@ -53,10 +55,14 @@
.container {
width: 375px;
flex-direction: column;
margin: 64px 24px 0px 24px;
padding: 64px 24px 0px 24px;
}

@media (max-width: 375px) {
.wrapper {
width: 100%;
}

.container {
width: 100%;
}
Expand Down

0 comments on commit 970f411

Please sign in to comment.