Skip to content

Commit

Permalink
perf: add outer border to the application #1
Browse files Browse the repository at this point in the history
  • Loading branch information
tiny-craft committed Sep 25, 2023
1 parent d3fb920 commit e584d7f
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions frontend/src/AppContent.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down

0 comments on commit e584d7f

Please sign in to comment.