55 lines
943 B
CSS
55 lines
943 B
CSS
@import url("/admin/static/index.css");
|
|
|
|
div.card {
|
|
margin-bottom: 2rem;
|
|
}
|
|
|
|
label {
|
|
width: auto;
|
|
margin: 0;
|
|
display: flex;
|
|
align-items: center;
|
|
color: inherit;
|
|
}
|
|
form#change-password input,
|
|
form#delete-account input {
|
|
width: min(20rem, calc(100% - 1rem));
|
|
margin: .5rem 0;
|
|
padding: .3rem .5rem;
|
|
display: block;
|
|
border-radius: 4px;
|
|
border: 1px solid #808080;
|
|
font-size: inherit;
|
|
font-family: inherit;
|
|
color: inherit;
|
|
}
|
|
|
|
.mfa-device {
|
|
padding: .75em;
|
|
margin-bottom: .5em;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
|
|
color: var(--fg-3);
|
|
background: var(--bg-2);
|
|
box-shadow: var(--shadow-md);
|
|
border-radius: 16px;
|
|
}
|
|
|
|
.mfa-device div {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
}
|
|
|
|
.mfa-device p {
|
|
margin: 0;
|
|
}
|
|
|
|
.mfa-device .mfa-device-name {
|
|
font-weight: bold;
|
|
}
|
|
|
|
.mfa-device form input {
|
|
display: none;
|
|
}
|