mirror of
https://github.com/shadiestgoat/obsidian-simple-password.git
synced 2026-07-22 05:46:29 +00:00
27 lines
370 B
CSS
27 lines
370 B
CSS
.sp-modal-blur {
|
|
backdrop-filter: blur(1rem);
|
|
}
|
|
.sp-container {
|
|
display: flex;
|
|
flex-direction: row;
|
|
gap: 1rem;
|
|
width: 100%;
|
|
}
|
|
|
|
.sp-container input {
|
|
flex-grow: 1;
|
|
}
|
|
|
|
.sp-wrong {
|
|
font-size: var(--font-ui-smaller);
|
|
color: var(--text-error);
|
|
margin: 5px 0;
|
|
}
|
|
|
|
.sp-settings input[disabled] {
|
|
color: var(--text-muted)
|
|
}
|
|
|
|
.sp-settings hr + * {
|
|
border-top: 'none'
|
|
}
|