Spaces:
Build error
Build error
File size: 712 Bytes
0bfe2e3 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 |
.credentialsInputContainer {
display: flex;
}
.resetCredentialButton {
margin-top: 5px;
margin-left: 5px;
top: 6px;
padding: 0;
background-color: transparent;
border: none;
color: rgb(255, 255, 255);
border-radius: var(--borderRadius);
cursor: pointer;
transition: transform 0.2s;
}
.resetCredentialButton:hover {
transform: scale(1.2);
}
.resetCredentialButton:active {
transform: scale(0.9);
}
.showHideButton {
background-color: transparent;
padding-top: 5px;
padding-left: 5px;
border: none;
transform: scale(1);
transition: transform 0.2s;
}
.showHideButton:hover {
transform: scale(1.2);
cursor: pointer;
}
.showHideButton:active {
transform: scale(0.9);
}
|