🐛 Fix horizontal scroll on layer panel (#7956)
Some checks are pending
Commit Message Check / Check Commit Message (push) Waiting to run
CI / Linter (push) Waiting to run
CI / Common Tests (push) Waiting to run
CI / Frontend Tests (push) Waiting to run
CI / Render WASM Tests (push) Waiting to run
CI / Backend Tests (push) Waiting to run
CI / Library Tests (push) Waiting to run
CI / Build Integration Bundle (push) Waiting to run
CI / Integration Tests 1/4 (push) Blocked by required conditions
CI / Integration Tests 2/4 (push) Blocked by required conditions
CI / Integration Tests 3/4 (push) Blocked by required conditions
CI / Integration Tests 4/4 (push) Blocked by required conditions

This commit is contained in:
Eva Marco
2025-12-11 21:34:18 +01:00
committed by GitHub
parent 2f46cbc0d4
commit 50dbe6ab12
3 changed files with 6 additions and 6 deletions

View File

@@ -94,6 +94,7 @@ example. It's still usable as before, we just removed the example.
- Fix incorrect interaction betwen hower and scroll on assets sidebar [Taiga #12389](https://tree.taiga.io/project/penpot/issue/12389)
- Fix switch variants with paths [Taiga #12841](https://tree.taiga.io/project/penpot/issue/12841)
- Fix referencing typography tokens on font-family tokens [Taiga #12492](https://tree.taiga.io/project/penpot/issue/12492)
- Fix horizontal scroll on layer panel [Taiga #12843](https://tree.taiga.io/project/penpot/issue/12843)
## 2.11.1

View File

@@ -5,6 +5,7 @@
// Copyright (c) KALEIDOS INC
@use "refactor/common-refactor.scss" as deprecated;
@use "ds/_utils.scss" as *;
.layer-row {
--layer-indentation-size: calc(#{deprecated.$s-4} * 6);
@@ -87,7 +88,7 @@
height: deprecated.$s-32;
width: calc(100% - (var(--depth) * var(--layer-indentation-size)));
cursor: pointer;
min-width: px2rem(140);
&.filtered {
width: calc(100% - deprecated.$s-12);
}

View File

@@ -211,9 +211,7 @@
overflow-x: auto;
overflow-y: overlay;
scrollbar-gutter: stable;
.element-list {
width: var(--left-sidebar-width);
display: grid;
}
}
.element-list {
display: grid;
}