feat: Light/dark modes
All checks were successful
Build and Push App Image / build-and-push (push) Successful in 1m48s
All checks were successful
Build and Push App Image / build-and-push (push) Successful in 1m48s
This commit is contained in:
@@ -919,4 +919,36 @@ onMounted(async () => {
|
||||
gap: 0.65rem;
|
||||
}
|
||||
}
|
||||
|
||||
/* Dark mode overrides */
|
||||
:root[data-bs-theme="dark"] .admin-topbar {
|
||||
border-bottom-color: #3a3f4b;
|
||||
}
|
||||
|
||||
:root[data-bs-theme="dark"] .admin-sidebar {
|
||||
background: #21252e;
|
||||
border-right-color: #3a3f4b;
|
||||
}
|
||||
|
||||
:root[data-bs-theme="dark"] .admin-nav .nav-link {
|
||||
color: #94a3b8;
|
||||
}
|
||||
|
||||
:root[data-bs-theme="dark"] .admin-nav .nav-link:hover {
|
||||
background: #2d3748;
|
||||
color: #e2e8f0;
|
||||
}
|
||||
|
||||
:root[data-bs-theme="dark"] .admin-nav .nav-link.active {
|
||||
background: #e2e8f0;
|
||||
color: #1a1d23;
|
||||
}
|
||||
|
||||
:root[data-bs-theme="dark"] .user-meta-value {
|
||||
color: #94a3b8;
|
||||
}
|
||||
|
||||
:root[data-bs-theme="dark"] .admin-section {
|
||||
background-color: #21252e;
|
||||
}
|
||||
</style>
|
||||
|
||||
Reference in New Issue
Block a user