stubbed in signup dialog

This commit is contained in:
Danny Coates 2018-09-27 15:46:46 -07:00
parent d560fc05cf
commit f7f8944e00
No known key found for this signature in database
GPG key ID: 4C442633C62E00CB
7 changed files with 85 additions and 6 deletions

View file

@ -0,0 +1,22 @@
.signupDialog {
display: flex;
flex-direction: column;
max-width: 400px;
padding: 16px;
}
.signupDialog__message {
margin: 32px 32px 0 32px;
}
.signupDialog__emailInput {
box-sizing: border-box;
height: 40px;
width: 100%;
border: 1px solid rgba(0, 0, 0, 0.2);
border-radius: 4px;
margin: 16px 0;
padding: 0 8px;
font-size: 18px;
color: var(--lightTextColor);
}