Fix styles for Auth modals
This commit is contained in:
parent
6777804f57
commit
a06047232f
2 changed files with 40 additions and 20 deletions
|
|
@ -1,6 +1,16 @@
|
||||||
.Login.DialogContent form {
|
.Login.DialogContent {
|
||||||
display: flex;
|
gap: $unit;
|
||||||
flex-direction: column;
|
min-width: $unit * 52;
|
||||||
gap: calc($unit / 2);
|
|
||||||
margin-bottom: $unit;
|
.DialogHeader {
|
||||||
|
padding: $unit-4x $unit-3x;
|
||||||
|
}
|
||||||
|
|
||||||
|
form {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
gap: calc($unit / 2);
|
||||||
|
margin-bottom: $unit-3x;
|
||||||
|
padding: 0 $unit-3x;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -1,21 +1,31 @@
|
||||||
.Signup.DialogContent form {
|
.Signup.DialogContent {
|
||||||
display: flex;
|
gap: $unit;
|
||||||
flex-direction: column;
|
min-width: $unit * 52;
|
||||||
gap: calc($unit / 2);
|
|
||||||
margin-bottom: $unit;
|
|
||||||
|
|
||||||
.terms {
|
.DialogHeader {
|
||||||
color: $grey-50;
|
padding: $unit-4x $unit-3x;
|
||||||
font-size: $font-small;
|
}
|
||||||
line-height: 1.2;
|
|
||||||
margin-top: $unit;
|
|
||||||
text-align: center;
|
|
||||||
|
|
||||||
a {
|
form {
|
||||||
color: $blue;
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
gap: calc($unit / 2);
|
||||||
|
margin-bottom: $unit-2x;
|
||||||
|
padding: 0 $unit-3x;
|
||||||
|
|
||||||
&:hover {
|
.terms {
|
||||||
color: darken($blue, 30);
|
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);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue