From bca45c5868e28bcf86008f86b35abee9fcb13a73 Mon Sep 17 00:00:00 2001 From: Freeplay Date: Wed, 15 Mar 2023 22:29:48 -0400 Subject: [PATCH] fix deck view margins --- packages/client/src/pages/note.vue | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/packages/client/src/pages/note.vue b/packages/client/src/pages/note.vue index 65fda4699..1b0380cc2 100644 --- a/packages/client/src/pages/note.vue +++ b/packages/client/src/pages/note.vue @@ -202,11 +202,13 @@ definePageMetadata(computed(() => note ? { } } } - &.max-width_500px > .note { - margin-inline: -24px; - } - &.max-width_350px > .note { - margin-inline: -12px; + #calckey_app > :not(.mk-deck) { + &.max-width_500px > .note { + margin-inline: -24px; + } + &.max-width_350px > .note { + margin-inline: -12px; + } } }