📚 Improved codebase structure & logging enhancements 🚀

This commit is contained in:
2025-06-01 04:26:09 +02:00
parent 1a3bfa4094
commit 19eeed46fb
29 changed files with 1918 additions and 494 deletions

View File

@@ -1079,7 +1079,7 @@
inset 0 1px 0 rgba(255, 255, 255, 0.2),
0 0 0 1px rgba(255, 255, 255, 0.05);
}
.notification.show {
@apply translate-x-0 opacity-100;
}
@@ -1100,7 +1100,7 @@
inset 0 1px 0 rgba(255, 255, 255, 0.3),
0 0 0 1px rgba(255, 255, 255, 0.1);
}
.notification-success {
@apply text-green-100;
background: linear-gradient(135deg,
@@ -1114,7 +1114,7 @@
inset 0 1px 0 rgba(255, 255, 255, 0.4),
0 0 0 1px rgba(34, 197, 94, 0.3);
}
.notification-error {
@apply text-red-100;
background: linear-gradient(135deg,
@@ -1128,7 +1128,7 @@
inset 0 1px 0 rgba(255, 255, 255, 0.4),
0 0 0 1px rgba(239, 68, 68, 0.3);
}
.notification-warning {
@apply text-yellow-100;
background: linear-gradient(135deg,
@@ -1142,7 +1142,7 @@
inset 0 1px 0 rgba(255, 255, 255, 0.4),
0 0 0 1px rgba(245, 158, 11, 0.3);
}
.notification-info {
@apply text-blue-100;
background: linear-gradient(135deg,
@@ -1209,7 +1209,7 @@
inset 0 1px 0 rgba(255, 255, 255, 0.15),
0 0 0 1px rgba(255, 255, 255, 0.05);
}
.alert-success {
@apply text-green-900 dark:text-green-100;
background: linear-gradient(135deg,
@@ -1218,7 +1218,7 @@
rgba(34, 197, 94, 0.08) 100%);
border: 1px solid rgba(34, 197, 94, 0.3);
}
.alert-error {
@apply text-red-900 dark:text-red-100;
background: linear-gradient(135deg,
@@ -1227,7 +1227,7 @@
rgba(239, 68, 68, 0.08) 100%);
border: 1px solid rgba(239, 68, 68, 0.3);
}
.alert-warning {
@apply text-yellow-900 dark:text-yellow-100;
background: linear-gradient(135deg,
@@ -1236,7 +1236,7 @@
rgba(245, 158, 11, 0.08) 100%);
border: 1px solid rgba(245, 158, 11, 0.3);
}
.alert-info {
@apply text-blue-900 dark:text-blue-100;
background: linear-gradient(135deg,

File diff suppressed because one or more lines are too long