From 1185d4b10b10a305afbaa318bc96613da2b0165c Mon Sep 17 00:00:00 2001 From: Elian Doran Date: Tue, 23 Dec 2025 23:02:26 +0200 Subject: [PATCH] chore(layout): reduce padding for promoted attributes --- apps/client/src/widgets/layout/NoteTitleActions.css | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/apps/client/src/widgets/layout/NoteTitleActions.css b/apps/client/src/widgets/layout/NoteTitleActions.css index 08426c19a..db2810c1e 100644 --- a/apps/client/src/widgets/layout/NoteTitleActions.css +++ b/apps/client/src/widgets/layout/NoteTitleActions.css @@ -6,7 +6,7 @@ body.experimental-feature-new-layout { .title-actions { display: flex; flex-direction: column; - gap: 1em; + gap: 0.5em; &:not(:empty) { padding: 0.75em 15px; @@ -33,5 +33,12 @@ body.experimental-feature-new-layout { } } } + + .promoted-attributes-widget { + .promoted-attributes-container { + margin: 0; + padding: 0; + } + } } }