0
Fork 0
mirror of https://github.com/penpot/penpot.git synced 2025-02-05 22:09:06 -05:00

🐛 Fix scroll of comment list on viewer

This commit is contained in:
Eva 2023-07-03 13:05:12 +02:00 committed by Andrey Antukh
parent 01ec22d662
commit 48d9541d46
3 changed files with 3 additions and 2 deletions

View file

@ -36,6 +36,7 @@
- Fix problems with locked layers [Taiga #5139](https://tree.taiga.io/project/penpot/issue/5139)
- Fix export from shared prototype [Taiga #5565](https://tree.taiga.io/project/penpot/issue/5565)
- Fix email change: validation error displaying even after both fields are identical [Taiga #5514](https://tree.taiga.io/project/penpot/issue/5514)
- Fix scroll on viewer comment list [Taiga #5563](https://tree.taiga.io/project/penpot/issue/5563)
### :arrow_up: Deps updates

View file

@ -246,7 +246,7 @@
pointer-events: auto;
.thread-groups {
height: 100%;
height: calc(100% - 34px);
overflow-y: scroll;
hr {
border: 0;

View file

@ -182,7 +182,7 @@
right: 0;
top: 50px;
width: 256px;
height: 100%;
height: calc(100vh - 48px);
z-index: 10;
}