refactor: require password verification

chore: styling work
This commit is contained in:
Andy Burke 2026-03-09 14:57:11 -07:00
parent 7977fe9ea7
commit 86fa2b6d4b
16 changed files with 348 additions and 88 deletions

View file

@ -582,6 +582,49 @@
left: -6px;
}
/* ICON - MIC */
.icon.mic {
box-sizing: border-box;
position: relative;
display: block;
transform: scale(var(--icon-scale, 1));
width: 16px;
height: 12px;
border-bottom-left-radius: 120px;
border-bottom-right-radius: 120px;
border: 2px solid;
border-top: 0;
margin-top: 3px;
}
.icon.mic::after,
.icon.mic::before {
content: "";
display: block;
box-sizing: border-box;
position: absolute;
}
.icon.mic::after {
border: 2px solid;
width: 8px;
height: 18px;
left: 2px;
top: -10px;
border-radius: 4px;
}
.icon.mic::before {
width: 10px;
height: 4px;
top: 12px;
left: 1px;
border-right: 4px solid transparent;
box-shadow:
0 2px 0,
inset -2px 0 0;
}
/* ICON - MINUS */
.icon.minus {
box-sizing: border-box;