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