feat: Update voice field visibility and enhance CSS for improved layout and accessibility

This commit is contained in:
JB
2025-10-06 11:59:44 -07:00
parent 323ab08f38
commit f3aaeda37b
2 changed files with 30 additions and 9 deletions
+13
View File
@@ -183,6 +183,11 @@ body {
gap: 0.4rem;
}
.field[hidden],
.field[data-state="hidden"] {
display: none !important;
}
.field--full {
max-width: none;
}
@@ -224,6 +229,14 @@ body {
width: min(100%, 420px);
}
.field input[type="range"] {
max-width: 420px;
width: min(100%, 420px);
padding: 0;
margin-inline: 0;
align-self: flex-start;
}
.field input[type="number"] {
max-width: 200px;
}