"Refactor database and admin UI connections for improved performance (feat)"

This commit is contained in:
2025-05-26 09:52:27 +02:00
parent 016452bb2e
commit 45fcc1a948
3 changed files with 30 additions and 3 deletions

View File

@@ -44,6 +44,32 @@
--dark-btn-hover: #f1f5f9;
}
/* Korrektur für Dark Mode Hintergrund */
.dark .bg-white.dark\:bg-dark-card {
background-color: #1e293b !important;
}
/* Zusätzliche Dark Mode Korrekturen */
html.dark body .bg-white.dark\:bg-dark-card {
background-color: #1e293b !important;
}
.dark .bg-slate-50 {
background-color: #0f172a !important;
}
.dark .bg-slate-800 {
background-color: #0f172a !important;
}
.dark .printer-card {
background-color: #1e293b !important;
}
.dark tbody.bg-white.dark\:bg-dark-card {
background-color: #1e293b !important;
}
/* Admin Panel Container */
.admin-container {
max-width: 1280px;
@@ -603,7 +629,8 @@
background-color: #0f172a;
}
.dark .dark-bg-card {
.dark .dark-bg-card,
.dark\:bg-dark-card:is(.dark *) {
background-color: var(--card-bg);
}