39 lines
601 B
CSS
39 lines
601 B
CSS
#login-parent {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
width: 100%;
|
|
flex-direction: column;
|
|
}
|
|
|
|
#login-splash {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
flex-direction: column;
|
|
}
|
|
|
|
#login-signin {
|
|
min-width: 256px;
|
|
max-width: 512px;
|
|
height: 100vh;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
#oauth-container {
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
justify-content: center;
|
|
width: 100%;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.oauth-icon {
|
|
margin: 12px;
|
|
width: 48px;
|
|
}
|