mirror of
https://github.com/penpot/penpot.git
synced 2025-12-11 22:14:05 +01:00
🐛 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
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:
@@ -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
|
||||
|
||||
|
||||
@@ -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);
|
||||
}
|
||||
|
||||
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user