feat: night mode

This commit is contained in:
tim
2025-07-09 00:55:42 +08:00
parent 47171a7649
commit fba2c80b9c
11 changed files with 46 additions and 47 deletions

View File

@@ -198,6 +198,7 @@ export default {
width: 32px;
height: 32px;
border-radius: 50%;
background-color: lightgray;
}
.dropdown-icon {
@@ -208,7 +209,7 @@ export default {
position: absolute;
top: 40px;
right: 0;
background-color: white;
background-color: var(--menu-background-color);
border: 1px solid #ddd;
border-radius: 4px;
box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
@@ -221,7 +222,7 @@ export default {
}
.dropdown-item:hover {
background-color: #f2f2f2;
background-color: var(--menu-selected-background-color);
}
</style>