mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-05-29 12:01:32 +02:00
Work around Safari 15's incomplete support for dvh units (#19567)
GitOrigin-RevId: ff6429d6a918413857dd8116611c9857958f68ed
This commit is contained in:
@@ -4,3 +4,19 @@ import ReactDOM from 'react-dom'
|
||||
import IdeRoot from '@/features/ide-react/components/ide-root'
|
||||
|
||||
ReactDOM.render(<IdeRoot />, document.getElementById('ide-root'))
|
||||
|
||||
// work around Safari 15's incomplete support for dvh units
|
||||
// https://github.com/overleaf/internal/issues/18109
|
||||
try {
|
||||
if (
|
||||
document.body.parentElement &&
|
||||
document.body.parentElement?.clientHeight < document.body.clientHeight
|
||||
) {
|
||||
const rootElement = document.querySelector<HTMLDivElement>('#ide-root')
|
||||
if (rootElement) {
|
||||
rootElement.style.height = '100vh'
|
||||
}
|
||||
}
|
||||
} catch {
|
||||
// ignore errors
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user