fix: Wrap excalidraw in position relative & hide scrollbars in zen mode (#3174)

* fix: wrap excalidraw in position relative so that host need not add it explicitly to fix positioning when non zero offsets

* patch version

* Hide scrollbars on excalidraw container

* remove overflow hidden from index.html since its handled in excalidraw container

* review fix

* update changelog
This commit is contained in:
Aakansha Doshi 2021-03-06 20:11:26 +05:30 committed by GitHub
parent 07e71a8071
commit eb24e8ffe4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 12 additions and 7 deletions

View file

@ -8,6 +8,8 @@
}
.excalidraw {
position: relative;
overflow: hidden;
color: var(--text-primary-color);
display: flex;
top: 0;