From 3b2cd5dca1b0ab22a4b43968de6f0ee046d1ae64 Mon Sep 17 00:00:00 2001 From: Adorian Doran Date: Sat, 28 Feb 2026 18:47:17 +0200 Subject: [PATCH] style/note paths: fix the border radius for a single item listing --- apps/client/src/widgets/ribbon/NotePathsTab.css | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/apps/client/src/widgets/ribbon/NotePathsTab.css b/apps/client/src/widgets/ribbon/NotePathsTab.css index 64c7374480..201117cce9 100644 --- a/apps/client/src/widgets/ribbon/NotePathsTab.css +++ b/apps/client/src/widgets/ribbon/NotePathsTab.css @@ -17,11 +17,13 @@ body.experimental-feature-new-layout .note-paths-widget { padding: 8px 20px 8px 25px; &:first-child { - border-radius: var(--border-radius) var(--border-radius) 0 0; + border-top-left-radius: var(--border-radius); + border-top-right-radius: var(--border-radius); } &:last-child { - border-radius: 0 0 var(--border-radius) var(--border-radius); + border-bottom-left-radius: var(--border-radius); + border-bottom-right-radius: var(--border-radius); } & + li {