perf: add outer border to the application #1

This commit is contained in:
tiny-craft 2023-09-25 19:47:26 +08:00
parent d3fb920b99
commit e584d7f078
1 changed files with 2 additions and 4 deletions

View File

@ -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}`
})
</script>