Adjust form padding (#10080)
- Prevent scrollbar from rendering over components
This commit is contained in:
parent
6e81fa2e7b
commit
f862867e2b
|
|
@ -564,7 +564,14 @@ export function ApiForm({
|
|||
<LoadingOverlay visible={isLoading} zIndex={1010} />
|
||||
|
||||
{/* Attempt at making fixed footer with scroll area */}
|
||||
<Paper mah={'65vh'} style={{ overflowY: 'auto' }}>
|
||||
<Paper
|
||||
mah={'65vh'}
|
||||
style={{
|
||||
overflowY: 'auto',
|
||||
paddingRight: '15px',
|
||||
paddingLeft: '5px'
|
||||
}}
|
||||
>
|
||||
<div>
|
||||
{/* Form Fields */}
|
||||
<Stack gap='sm'>
|
||||
|
|
|
|||
Loading…
Reference in New Issue