Skip to content

Commit

Permalink
Update virtual box height for MacOS
Browse files Browse the repository at this point in the history
Signed-off-by: David Kesl <[email protected]>
  • Loading branch information
Davek145 committed Sep 25, 2023
1 parent 96ca728 commit f5d2c8c
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,9 @@ export default {
if (this.$theme.ios) vlHeight = 78
if (this.$theme.aurora) vlHeight = 60.77
if (this.$theme.md) vlHeight = 87.4
if (this.$device.macos) vlHeight -= 0.77
if (this.$device.macos) {
if (window.navigator.userAgent.includes('Safari') && !window.navigator.userAgent.includes('Chrome')) vlHeight -= 0.77
}
if (item.tags) {
let tagsNonS = item.tags
if (item.metadata && item.metadata.semantics) {
Expand Down

0 comments on commit f5d2c8c

Please sign in to comment.