From ea971a01094ae639281878a388ca20aef7dc06c8 Mon Sep 17 00:00:00 2001 From: Andrey Antukh Date: Wed, 29 Apr 2026 07:38:08 +0000 Subject: [PATCH 1/2] :bug: Fix redundant longhand margin-block properties in options.scss Combine margin-block-start and margin-block-end into the margin-block shorthand to satisfy the declaration-block-no-redundant-longhand-properties stylelint rule. Signed-off-by: Andrey Antukh --- frontend/src/app/main/ui/settings/options.scss | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/frontend/src/app/main/ui/settings/options.scss b/frontend/src/app/main/ui/settings/options.scss index 2df1d9235f..abe949897f 100644 --- a/frontend/src/app/main/ui/settings/options.scss +++ b/frontend/src/app/main/ui/settings/options.scss @@ -25,9 +25,8 @@ grid-auto-rows: auto; gap: var(--sp-s); width: $sz-500; - margin-block-start: var(--sp-xxxl); + margin-block: var(--sp-xxxl) $sz-120; /* FIXME: this should be a proper token */ padding-block-start: var(--sp-xxxl); - margin-block-end: $sz-120; /* FIXME: this should be a proper token */ border-block-start: $b-1 solid var(--color-background-quaternary); color: var(--color-foreground-primary); } From 9751ac2b4120a64ffe2812cd8ba1b11fb19e8fd8 Mon Sep 17 00:00:00 2001 From: Andrey Antukh Date: Wed, 29 Apr 2026 09:43:13 +0200 Subject: [PATCH 2/2] :paperclip: Update changelog --- CHANGES.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGES.md b/CHANGES.md index 3fccd4f985..afb02a605b 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -47,9 +47,9 @@ - Allow customising the OIDC login button label (by @wdeveloper16) [Github #7027](https://github.com/penpot/penpot/issues/7027) - Add page separators in Workspace [Taiga #13611](https://tree.taiga.io/project/penpot/us/13611?milestone=262806) - Preserve vector content when pasting from external tools such as Inkscape: recognise SVG sent as text/plain (with optional XML declaration and HTML comments), skip the raster preview when an SVG sibling is on the clipboard, and ignore empty SVG blobs that some tools advertise alongside the real payload, so pasted graphics arrive editable without spurious "SVG is invalid" warnings [Github #546](https://github.com/penpot/penpot/issues/546) - - Add Shift+Numpad0/1/2 as aliases to Shift+0/1/2 for zoom shortcuts [Github #2457](https://github.com/penpot/penpot/issues/2457) - Adds a **Pixel grid color** picker in the viewport settings, next to the existing canvas color control [Github #7750](https://github.com/penpot/penpot/issues/7750) + ### :bug: Bugs fixed - Fix plugin API `fileVersion.restore()` promise hanging indefinitely on restore failure [Github #9092](https://github.com/penpot/penpot/issues/9092)