From 2ac3d3aaed07b0850cf72224195a4305b6733d07 Mon Sep 17 00:00:00 2001 From: Elian Doran Date: Tue, 23 Dec 2025 19:49:21 +0200 Subject: [PATCH] style(layout): adjust paddings slightly --- .../src/widgets/layout/NoteTitleActions.css | 34 ++++++++++--------- 1 file changed, 18 insertions(+), 16 deletions(-) diff --git a/apps/client/src/widgets/layout/NoteTitleActions.css b/apps/client/src/widgets/layout/NoteTitleActions.css index 8485e0d5e..1ec632e86 100644 --- a/apps/client/src/widgets/layout/NoteTitleActions.css +++ b/apps/client/src/widgets/layout/NoteTitleActions.css @@ -4,26 +4,28 @@ body.experimental-feature-new-layout { } .title-actions { - &.visible:not(:empty) { + display: flex; + flex-direction: column; + gap: 1em; + + &:not(:empty) { padding: 0.75em 15px; } - } - .edited-notes { - padding: 1.5em 0; + .edited-notes { + .collapsible-inner-body { + display: flex; + flex-wrap: wrap; + gap: 0.3em; - .collapsible-inner-body { - display: flex; - flex-wrap: wrap; - gap: 0.3em; - - .badge { - margin: 0; - a.tn-link { - color: inherit; - text-transform: none; - text-decoration: none; - display: inline-block; + .badge { + margin: 0; + a.tn-link { + color: inherit; + text-transform: none; + text-decoration: none; + display: inline-block; + } } } }