mirror of
https://github.com/ragestudio/comty.git
synced 2025-06-11 03:24:16 +00:00
56 lines
788 B
Plaintext
56 lines
788 B
Plaintext
.app_login {
|
|
height: 100vh;
|
|
width: 100vw;
|
|
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
|
|
> div {
|
|
margin-bottom: 20px;
|
|
}
|
|
}
|
|
|
|
.login-form {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
.login-form-username {
|
|
font-size: 20px!important;
|
|
|
|
input {
|
|
padding: 20px!important;
|
|
font-size: 20px!important;
|
|
}
|
|
}
|
|
|
|
.session_available {
|
|
width: fit-content;
|
|
height: fit-content;
|
|
|
|
padding: 20px;
|
|
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
|
|
border: 1px solid #e5e5e5;
|
|
border-radius: 8px;
|
|
|
|
.session_card {
|
|
width: fit-content;
|
|
height: fit-content;
|
|
|
|
margin: 10px;
|
|
padding: 5px 10px;
|
|
|
|
border: 1px solid #e5e5e5;
|
|
border-radius: 8px;
|
|
}
|
|
}
|