Skip to content

Commit

Permalink
refactor(frontend): 修复前端黑暗模式的一些颜色问题
Browse files Browse the repository at this point in the history
  • Loading branch information
mcthesw committed Jul 24, 2024
1 parent e8d9bdf commit b69e1f4
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/views/AddGame.vue
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,7 @@ function deleteRow(index: number) {
.bold {
margin-left: 10px;
font-weight: bold;
color: #000000;
color: var(--el-text-color-primary);
}
.save-table {
Expand Down
4 changes: 4 additions & 0 deletions src/views/Home.vue
Original file line number Diff line number Diff line change
Expand Up @@ -93,4 +93,8 @@ function go_backup() {
margin-top: 100px;
justify-content: space-around;
}
svg {
fill: var(--el-text-color-primary);
}
</style>
2 changes: 1 addition & 1 deletion src/views/SyncSettings.vue
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ function open_manual() {
.bold {
margin-left: 10px;
font-weight: bold;
color: #000000;
color: var(--el-text-color-primary);
}
.el-input {
Expand Down

0 comments on commit b69e1f4

Please sign in to comment.