feat: implement MariaDB export/import wizards, server tuning, and global styling components

This commit is contained in:
Ümit Tunç
2026-04-03 15:55:09 +03:00
parent 4932e18553
commit fe25ec5b38
10 changed files with 530 additions and 135 deletions
+17 -6
View File
@@ -56,12 +56,22 @@ header img.logo {
}
/* For automatic logo switching in dark mode */
.logo-light { display: none; }
.logo-dark { display: block; }
.logo-light {
display: none;
}
.logo-dark {
display: block;
}
@media (prefers-color-scheme: dark) {
.logo-dark { display: none; }
.logo-light { display: block; }
.logo-dark {
display: none;
}
.logo-light {
display: block;
}
}
h1 {
@@ -77,7 +87,8 @@ table {
margin-top: 1rem;
}
th, td {
th,
td {
padding: 0.75rem 1rem;
text-align: left;
border-bottom: 1px solid var(--border-color);
@@ -169,4 +180,4 @@ footer {
text-align: center;
font-size: 0.875rem;
opacity: 0.6;
}
}