Merge pull request #345 from chrishollandaise/fix/editor-top-firefox

`EditorTop` takes all available space on Firefox-based browsers
This commit is contained in:
Badr B. 2024-10-18 10:18:55 +02:00 committed by GitHub
commit a7defca2c3
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -338,6 +338,7 @@ const EditorTop = styled.div`
position: fixed; position: fixed;
z-index: 303; z-index: 303;
width: -webkit-fill-available; width: -webkit-fill-available;
width: -moz-available;
` `
// Inside EditorTop // Inside EditorTop