mirror of
https://github.com/penpot/penpot.git
synced 2025-06-02 09:21:40 +02:00
🐛 Fix horizontal scroll from design tab (#6213)
This commit is contained in:
parent
c332528185
commit
1e16fb8ca2
2 changed files with 3 additions and 2 deletions
|
@ -15,6 +15,7 @@
|
||||||
- Fix path having a wrong selrect [Taiga #10257](https://tree.taiga.io/project/penpot/issue/10257)
|
- Fix path having a wrong selrect [Taiga #10257](https://tree.taiga.io/project/penpot/issue/10257)
|
||||||
- Fix SVG `stroke-linecap` property when importing SVGs [Taiga #9489](https://tree.taiga.io/project/penpot/issue/9489)
|
- Fix SVG `stroke-linecap` property when importing SVGs [Taiga #9489](https://tree.taiga.io/project/penpot/issue/9489)
|
||||||
- Fix position problems cutting-pasting a component [Taiga #10677](https://tree.taiga.io/project/penpot/issue/10677)
|
- Fix position problems cutting-pasting a component [Taiga #10677](https://tree.taiga.io/project/penpot/issue/10677)
|
||||||
|
- Fix design tab has a horizontal scroll [Taiga #10660](https://tree.taiga.io/project/penpot/issue/10660)
|
||||||
|
|
||||||
## 2.6.0 (Unreleased)
|
## 2.6.0 (Unreleased)
|
||||||
|
|
||||||
|
|
|
@ -25,8 +25,8 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
.element-options {
|
.element-options {
|
||||||
display: grid;
|
display: flex;
|
||||||
grid-auto-rows: min-content;
|
flex-direction: column;
|
||||||
gap: $s-8;
|
gap: $s-8;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: calc(100vh - $s-80);
|
height: calc(100vh - $s-80);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue