fix(web-ui): recorder modal body scrolls (min-height:0) so codec/destination aren't clipped at zoom
This commit is contained in:
parent
323d482eab
commit
b65ce5b0b7
1 changed files with 3 additions and 0 deletions
|
|
@ -25,6 +25,7 @@
|
|||
}
|
||||
.modal-head {
|
||||
display: flex; align-items: center;
|
||||
flex-shrink: 0;
|
||||
padding: 16px 20px;
|
||||
border-bottom: 1px solid var(--border);
|
||||
gap: 16px;
|
||||
|
|
@ -32,6 +33,7 @@
|
|||
.modal-head > :first-child { flex: 1; }
|
||||
.modal-body {
|
||||
flex: 1;
|
||||
min-height: 0;
|
||||
overflow-y: auto;
|
||||
padding: 16px 20px;
|
||||
display: flex; flex-direction: column;
|
||||
|
|
@ -39,6 +41,7 @@
|
|||
}
|
||||
.modal-foot {
|
||||
display: flex; align-items: center;
|
||||
flex-shrink: 0;
|
||||
padding: 12px 20px;
|
||||
border-top: 1px solid var(--border);
|
||||
gap: 8px;
|
||||
|
|
|
|||
Loading…
Reference in a new issue