diff --git a/frontend/src/AppContent.vue b/frontend/src/AppContent.vue index 24d4bd8..33409e2 100644 --- a/frontend/src/AppContent.vue +++ b/frontend/src/AppContent.vue @@ -74,6 +74,15 @@ watch( } }, ) + +const borderRadius = computed(() => { + if (isMacOS()) { + return WindowIsFullscreen().then((full) => { + return full ? '0' : '10px' + }) + } + return '10px' +})