35 lines
500 B
SCSS
35 lines
500 B
SCSS
@import "constants";
|
|
|
|
#invites-form {
|
|
padding: $default-padding;
|
|
text-align: left;
|
|
|
|
form {
|
|
display: flex;
|
|
margin-top: $default-padding;
|
|
}
|
|
|
|
h4 {
|
|
font-weight: bold;
|
|
margin-bottom: $default-spacer;
|
|
}
|
|
|
|
p {
|
|
margin-bottom: $default-spacer;
|
|
}
|
|
|
|
ul {
|
|
list-style-position: inside;
|
|
list-style-type: disc;
|
|
margin-bottom: $default-padding;
|
|
}
|
|
|
|
input[type=email] {
|
|
width: auto;
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
.button {
|
|
margin-left: $default-spacer;
|
|
}
|
|
}
|