diff --git a/public/index.html b/public/index.html
index 2665eafa..0e7353a2 100644
--- a/public/index.html
+++ b/public/index.html
@@ -116,7 +116,6 @@
user-select: none;
width: 100vw;
height: 100vh;
- overflow: hidden;
}
.visually-hidden {
diff --git a/src/components/App.tsx b/src/components/App.tsx
index cb65a860..efd03b96 100644
--- a/src/components/App.tsx
+++ b/src/components/App.tsx
@@ -414,8 +414,6 @@ class App extends React.Component {
zenModeEnabled,
width: canvasDOMWidth,
height: canvasDOMHeight,
- offsetTop,
- offsetLeft,
viewModeEnabled,
} = this.state;
@@ -433,8 +431,6 @@ class App extends React.Component {
style={{
width: canvasDOMWidth,
height: canvasDOMHeight,
- top: offsetTop,
- left: offsetLeft,
}}
>
-## Unreleased
+## 0.4.2
## Excalidraw API
### Fixes
+- Wrap excalidraw in position relative so host need not do it anymore & hide scrollbars in zen mode [#3174](https://github.com/excalidraw/excalidraw/pull/3174).
- Reduce the scroll debounce timeout to `100ms` so `offsets` gets updated faster if changed when container scrolled [#3182](https://github.com/excalidraw/excalidraw/pull/3182).
+- Rerender UI on `renderFooter` prop change [#3183](https://github.com/excalidraw/excalidraw/pull/3183)
+
+## Excalidraw Library
+
+### Fixes
+
+- Temporarily downgrade browser-fs-access to fix legacy FS API [#3172](https://github.com/excalidraw/excalidraw/pull/3172)
---
diff --git a/src/packages/excalidraw/package.json b/src/packages/excalidraw/package.json
index 6ca24bb7..db03033e 100644
--- a/src/packages/excalidraw/package.json
+++ b/src/packages/excalidraw/package.json
@@ -1,6 +1,6 @@
{
"name": "@excalidraw/excalidraw",
- "version": "0.4.1",
+ "version": "0.4.2",
"main": "dist/excalidraw.min.js",
"files": [
"dist/*"