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}` })