mirror of
https://github.com/penpot/penpot.git
synced 2025-07-24 00:57:19 +02:00
🐛 Fix misaligned input on comments
This commit is contained in:
parent
a861691ffd
commit
9f7a002a78
2 changed files with 3 additions and 3 deletions
|
@ -16,6 +16,7 @@
|
||||||
- Allow library colors as recent colors [Taiga #7640](https://tree.taiga.io/project/penpot/issue/7640)
|
- Allow library colors as recent colors [Taiga #7640](https://tree.taiga.io/project/penpot/issue/7640)
|
||||||
- Missing scroll in viewmode comments [Taiga #7427](https://tree.taiga.io/project/penpot/issue/7427)
|
- Missing scroll in viewmode comments [Taiga #7427](https://tree.taiga.io/project/penpot/issue/7427)
|
||||||
- Comments in View mode should mimic the positioning behavior of the Workspace [Taiga #7346](https://tree.taiga.io/project/penpot/issue/7346)
|
- Comments in View mode should mimic the positioning behavior of the Workspace [Taiga #7346](https://tree.taiga.io/project/penpot/issue/7346)
|
||||||
|
- Misaligned input on comments [Taiga #7461](https://tree.taiga.io/project/penpot/issue/7461)
|
||||||
|
|
||||||
### :bug: Bugs fixed
|
### :bug: Bugs fixed
|
||||||
|
|
||||||
|
|
|
@ -142,11 +142,10 @@
|
||||||
// thread-content
|
// thread-content
|
||||||
.thread-content {
|
.thread-content {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
overflow-y: scroll;
|
overflow-y: auto;
|
||||||
scrollbar-gutter: stable;
|
|
||||||
width: $s-284;
|
width: $s-284;
|
||||||
padding: $s-12;
|
padding: $s-12;
|
||||||
padding-inline-end: 0;
|
padding-inline-end: $s-8;
|
||||||
|
|
||||||
pointer-events: auto;
|
pointer-events: auto;
|
||||||
user-select: text;
|
user-select: text;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue