From fe50d83b16daa4291104032ae0e2da621df401f9 Mon Sep 17 00:00:00 2001 From: Grigorij Aronov Date: Sat, 2 May 2026 12:25:14 +0200 Subject: [PATCH] fix(ui): make full note row clickable Signed-off-by: Grigorij Aronov --- src/components/NoteItem.vue | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/src/components/NoteItem.vue b/src/components/NoteItem.vue index b65642d60..0c9a72546 100644 --- a/src/components/NoteItem.vue +++ b/src/components/NoteItem.vue @@ -327,4 +327,14 @@ export default { color: var(--color-primary-element-text) !important; } } + +:deep(.list-item) { + padding: 0; +} + +:deep(.list-item__anchor) { + box-sizing: border-box; + height: calc(var(--list-item-height) + 2 * var(--default-grid-baseline)); + padding: var(--list-item-padding); +}