From d3fb920b99a0d8c5e06fdbd65006b02fc07116c9 Mon Sep 17 00:00:00 2001 From: tiny-craft <137850705+tiny-craft@users.noreply.github.com> Date: Mon, 25 Sep 2023 17:30:01 +0800 Subject: [PATCH] perf: add outer border to the application fix: remove draggable feature on dialog component --- frontend/src/AppContent.vue | 13 ++++++++++--- frontend/src/styles/style.scss | 4 ++-- 2 files changed, 12 insertions(+), 5 deletions(-) diff --git a/frontend/src/AppContent.vue b/frontend/src/AppContent.vue index 33409e2..e1a7bc1 100644 --- a/frontend/src/AppContent.vue +++ b/frontend/src/AppContent.vue @@ -83,6 +83,13 @@ const borderRadius = computed(() => { } return '10px' }) + +const border = computed(() => { + if (isMacOS()) { + return undefined + } + return `1px solid ${themeVars.value.borderColor}` +})