From e584d7f0780886b36e48397ab262c0735634578a Mon Sep 17 00:00:00 2001 From: tiny-craft <137850705+tiny-craft@users.noreply.github.com> Date: Mon, 25 Sep 2023 19:47:26 +0800 Subject: [PATCH] perf: add outer border to the application #1 --- frontend/src/AppContent.vue | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/frontend/src/AppContent.vue b/frontend/src/AppContent.vue index e1a7bc1..7b48ded 100644 --- a/frontend/src/AppContent.vue +++ b/frontend/src/AppContent.vue @@ -85,10 +85,8 @@ const borderRadius = computed(() => { }) const border = computed(() => { - if (isMacOS()) { - return undefined - } - return `1px solid ${themeVars.value.borderColor}` + const color = isMacOS() ? '#0000' : themeVars.value.borderColor + return `1px solid ${color}` })