Explain what the email in the login is for Make a guess at the users name Don't mark uploaded files as persisted (since they're not)
32 lines
349 B
CSS
32 lines
349 B
CSS
.root {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
height: 100vh;
|
|
}
|
|
|
|
.card {
|
|
width: 350px;
|
|
padding: 10px;
|
|
}
|
|
|
|
.card img {
|
|
display: block;
|
|
margin: auto;
|
|
padding-bottom: 5px;
|
|
}
|
|
|
|
.errorMsg {
|
|
color: #dd0000;
|
|
}
|
|
|
|
.message {
|
|
font-size: 1.1em;
|
|
margin: 20px 10px;
|
|
}
|
|
|
|
.button {
|
|
padding: .25em 1em;
|
|
height: auto;
|
|
}
|