Fix styles for Auth modals

This commit is contained in:
Justin Edmund 2023-01-19 10:25:17 -08:00
parent 6777804f57
commit a06047232f
2 changed files with 40 additions and 20 deletions

View file

@ -1,6 +1,16 @@
.Login.DialogContent form {
display: flex;
flex-direction: column;
gap: calc($unit / 2);
margin-bottom: $unit;
.Login.DialogContent {
gap: $unit;
min-width: $unit * 52;
.DialogHeader {
padding: $unit-4x $unit-3x;
}
form {
display: flex;
flex-direction: column;
gap: calc($unit / 2);
margin-bottom: $unit-3x;
padding: 0 $unit-3x;
}
}

View file

@ -1,21 +1,31 @@
.Signup.DialogContent form {
display: flex;
flex-direction: column;
gap: calc($unit / 2);
margin-bottom: $unit;
.Signup.DialogContent {
gap: $unit;
min-width: $unit * 52;
.terms {
color: $grey-50;
font-size: $font-small;
line-height: 1.2;
margin-top: $unit;
text-align: center;
.DialogHeader {
padding: $unit-4x $unit-3x;
}
a {
color: $blue;
form {
display: flex;
flex-direction: column;
gap: calc($unit / 2);
margin-bottom: $unit-2x;
padding: 0 $unit-3x;
&:hover {
color: darken($blue, 30);
.terms {
color: $grey-50;
font-size: $font-small;
line-height: 1.2;
margin-top: $unit;
text-align: center;
a {
color: $blue;
&:hover {
color: darken($blue, 30);
}
}
}
}