34 lines
598 B
CSS
34 lines
598 B
CSS
.PasswordOwner {
|
|
padding: 0;
|
|
width: auto;
|
|
height: auto;
|
|
display: flex;
|
|
justify-content: left;
|
|
align-content: center;
|
|
flex-direction: row;
|
|
}
|
|
|
|
input.PasswordInput {
|
|
display: block;
|
|
margin-right: var(--default_spacing);
|
|
padding: 2px;
|
|
border-radius: var(--border_radius);
|
|
background: rgba(160, 160, 160, 0.1);
|
|
border: none;
|
|
box-shadow: none;
|
|
outline: none;
|
|
color: var(--text_color);
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.PasswordShowHide {
|
|
padding-top: 2px;
|
|
cursor: pointer;
|
|
min-width: 20px;
|
|
}
|
|
|
|
.PasswordLink {
|
|
margin-right: var(--default_spacing);
|
|
cursor: pointer;
|
|
}
|