"Refactor database structures and templates for improved performance and maintainability"

This commit is contained in:
2025-05-29 14:46:31 +02:00
parent 87b54d1cea
commit e1457ab02e
8 changed files with 315 additions and 359 deletions

View File

@@ -615,6 +615,23 @@
color: var(--dark-text-muted);
}
/* Censored Text for Privacy Protection */
.censored-text {
font-family: monospace;
background: linear-gradient(45deg, var(--light-text-secondary), var(--light-text-muted));
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
font-weight: 500;
}
.dark .censored-text {
background: linear-gradient(45deg, var(--dark-text-secondary), var(--dark-text-muted));
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
/* Smooth transitions für alle professionellen Komponenten */
.professional-hero,
.professional-container,