diff --git a/src/renderer/src/components/MoveMenu.vue b/src/renderer/src/components/MoveMenu.vue index b135fd0..03323a1 100644 --- a/src/renderer/src/components/MoveMenu.vue +++ b/src/renderer/src/components/MoveMenu.vue @@ -2,14 +2,18 @@
+ +
@@ -39,7 +43,7 @@ const close = async () => { await window.api.moveClosed() } const onCategoryClick = async (category) => { - if (!category || !noteId.value) return + if (!noteId.value) return await updateNote(noteId.value, { category: category }) @@ -55,10 +59,20 @@ watch(open, async () => { width: 50vw; height: 100%; border-left: 1px solid var(--grey-100); + display: flex; + flex-direction: column; .cancel-button { color: var(--grey-100); padding: 9px 0 16px; } + .summarium-button { + display: block; + margin: 10px 0; + + &:hover { + color: var(--theme-accent); + } + } }