mirror of
https://github.com/owncast/owncast.git
synced 2024-11-25 22:31:09 +03:00
Fix URL Modal scrolling and size (#2410)
* Change iframe style to block - this removes the double scrollbar issue that was occurring * Change and Add default modal sizes
This commit is contained in:
parent
818dde0512
commit
a8fea0df80
1 changed files with 10 additions and 2 deletions
|
@ -27,10 +27,17 @@ export const Modal: FC<ModalProps> = ({
|
|||
}) => {
|
||||
const [loading, setLoading] = useState(!!url);
|
||||
|
||||
let defaultHeight = '100%';
|
||||
let defaultWidth = '520px';
|
||||
if (url) {
|
||||
defaultHeight = '70vh';
|
||||
defaultWidth = '900px';
|
||||
}
|
||||
|
||||
const modalStyle = {
|
||||
padding: '0px',
|
||||
minHeight: height,
|
||||
height: height ?? '100%',
|
||||
height: height ?? defaultHeight,
|
||||
};
|
||||
|
||||
const iframe = url && (
|
||||
|
@ -42,6 +49,7 @@ export const Modal: FC<ModalProps> = ({
|
|||
sandbox="allow-same-origin allow-scripts allow-popups allow-forms"
|
||||
frameBorder="0"
|
||||
allowFullScreen
|
||||
style={{ display: 'block' }}
|
||||
// eslint-disable-next-line react/no-unknown-property
|
||||
onLoad={() => setLoading(false)}
|
||||
/>
|
||||
|
@ -57,7 +65,7 @@ export const Modal: FC<ModalProps> = ({
|
|||
onCancel={handleCancel}
|
||||
afterClose={afterClose}
|
||||
bodyStyle={modalStyle}
|
||||
width={width}
|
||||
width={width ?? defaultWidth}
|
||||
zIndex={999}
|
||||
footer={null}
|
||||
centered
|
||||
|
|
Loading…
Reference in a new issue