32 lines
515 B
SCSS
32 lines
515 B
SCSS
.Signup.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-2x;
|
|
padding: 0 $unit-3x;
|
|
|
|
.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);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|