This commit is contained in:
2021-10-10 16:00:37 -03:00
parent ad4b9b7cd0
commit 5ad9a1581c
9 changed files with 304 additions and 135 deletions

View File

@@ -553,14 +553,14 @@ html, body {
.identify-container:has {
height: 100%;
}
.identify-container .error-message-container {
.identify-container .error-message-container, .identify-container .success-message-container {
width: 70vw;
background-color: #D17262;
display: flex;
justify-content: center;
align-items: center;
}
.identify-container .error-message-container p {
.identify-container .error-message-container p, .identify-container .success-message-container p {
margin: 2vw;
color: #ffffff;
font-family: "Raleway", sans-serif;
@@ -568,6 +568,12 @@ html, body {
user-select: none;
font-size: 22pt;
}
.identify-container .success-message-container {
background-color: #D7FBE8;
}
.identify-container .success-message-container p {
color: #464646;
}
.identify-container .identify {
width: 70vw;
}
@@ -619,6 +625,29 @@ html, body {
border: #969696 solid 1px;
}
.loading-container {
width: 100%;
height: 83vh;
display: flex;
justify-content: center;
align-items: center;
}
.loading-container.dark-mode-component {
background-color: #303841;
}
.reset-password {
height: 4vh;
width: 60%;
margin-bottom: 1vh;
border: none;
border-bottom: 1px solid #969696;
outline: none;
width: 50%;
border: #969696 solid 1px;
background-color: #62D2A2;
}
.identify-container.dark-mode-component {
background-color: #3A4750;
}