🐛 Fix: fix backgroud color mismatch problem on MacOS

This commit is contained in:
萌萌哒赫萝 2023-03-24 10:58:01 +08:00
parent ca693b2076
commit 6f3c14c521
2 changed files with 4 additions and 3 deletions

View File

@ -21,5 +21,8 @@
"stylusSupremacy.quoteChar": "\"", "stylusSupremacy.quoteChar": "\"",
"editor.codeActionsOnSave": { "editor.codeActionsOnSave": {
"source.fixAll.eslint": true "source.fixAll.eslint": true
} },
"githubPullRequests.ignoredPullRequestBranches": [
"dev"
]
} }

View File

@ -2,7 +2,6 @@
<div id="main-page"> <div id="main-page">
<div <div
class="fake-title-bar" class="fake-title-bar"
:class="{ 'darwin': os === 'darwin' }"
> >
<div class="fake-title-bar__title"> <div class="fake-title-bar__title">
PicList - {{ version }} PicList - {{ version }}
@ -123,7 +122,6 @@
:offset="3" :offset="3"
style="height: 100%" style="height: 100%"
class="main-wrapper" class="main-wrapper"
:class="{ 'darwin': os === 'darwin' }"
> >
<router-view <router-view
v-slot="{ Component }" v-slot="{ Component }"