hensei-web/components/LoginModal/index.scss
Justin Edmund 85d5ba075b Fix modal positioning
Weirdly, mobile modals had 14px of padding, so we reset that and got rid of the min-width on Login and Signup modals
2023-02-02 03:36:19 -08:00

11 lines
172 B
SCSS

.Login.DialogContent {
gap: $unit;
// min-width: $unit * 52;
.Fields {
display: flex;
flex-direction: column;
gap: $unit;
padding: 0 $unit-4x;
}
}