perf: add outer border to the application #1
This commit is contained in:
parent
d3fb920b99
commit
e584d7f078
|
@ -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>
|
||||
|
||||
|
|
Loading…
Reference in New Issue