- Adds optional tenant-based cookie handling based by domain (commented out to leave functionality out by default) - Removes 2.0 multi-tenant example - Updates `examples/multi-tenant-single-domain` --> `examples/multi-tenant`
30 lines
400 B
SCSS
30 lines
400 B
SCSS
.loginPage {
|
|
min-height: 100vh;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
|
|
form {
|
|
display: flex;
|
|
align-items: flex-start;
|
|
flex-direction: column;
|
|
gap: 16px;
|
|
}
|
|
|
|
label {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 4px;
|
|
}
|
|
|
|
input {
|
|
padding: 8px 16px;
|
|
width: 300px;
|
|
}
|
|
|
|
button {
|
|
margin-top: 4px;
|
|
padding: 8px 20px;
|
|
}
|
|
}
|