2018-02-13 19:32:59 +00:00
|
|
|
.passwordInput {
|
|
|
|
display: flex;
|
|
|
|
flex-wrap: nowrap;
|
|
|
|
width: 80%;
|
2018-02-16 20:56:53 +00:00
|
|
|
padding: 10px 5px 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.passwordInput__msg {
|
|
|
|
height: 100px;
|
|
|
|
margin: 0 5px;
|
|
|
|
font-size: 15px;
|
|
|
|
color: var(--lightTextColor);
|
2018-02-13 19:32:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.passwordInput--hidden {
|
|
|
|
visibility: hidden;
|
|
|
|
}
|
|
|
|
|
2018-02-16 20:56:53 +00:00
|
|
|
.inputBtn--loading {
|
|
|
|
background-image: url('../assets/spinner.svg');
|
|
|
|
background-position: center;
|
|
|
|
background-size: 30px 30px;
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
background-color: var(--successControlBGColor);
|
|
|
|
border: 1px solid var(--successControlBGColor);
|
|
|
|
color: var(--successControlFGColor);
|
2018-02-19 22:02:06 +00:00
|
|
|
flex-basis: 20%;
|
2018-02-16 20:56:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.inputBtn--loading:hover {
|
|
|
|
background-color: var(--successControlBGColor);
|
|
|
|
}
|
|
|
|
|
2018-02-13 19:32:59 +00:00
|
|
|
@media (max-device-width: 520px), (max-width: 520px) {
|
|
|
|
.passwordInput {
|
|
|
|
flex-direction: column;
|
|
|
|
width: inherit;
|
|
|
|
}
|
|
|
|
}
|