From 1e16fb8ca23599eb5e5a5fcbfcb172714c2f0615 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marina=20L=C3=B3pez?= Date: Wed, 2 Apr 2025 20:00:22 +0200 Subject: [PATCH] :bug: Fix horizontal scroll from design tab (#6213) --- CHANGES.md | 1 + frontend/src/app/main/ui/workspace/sidebar/options.scss | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index 85d4d3fd81..5b0e9abe81 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -15,6 +15,7 @@ - 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 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) diff --git a/frontend/src/app/main/ui/workspace/sidebar/options.scss b/frontend/src/app/main/ui/workspace/sidebar/options.scss index 8548dc80fc..5218381871 100644 --- a/frontend/src/app/main/ui/workspace/sidebar/options.scss +++ b/frontend/src/app/main/ui/workspace/sidebar/options.scss @@ -25,8 +25,8 @@ } .element-options { - display: grid; - grid-auto-rows: min-content; + display: flex; + flex-direction: column; gap: $s-8; width: 100%; height: calc(100vh - $s-80);