Dashboard Fach hinzufügen funktioniert in swe-b1-a-dev

This commit is contained in:
Kelvi Yawo Jules Agbessi Awuklu
2024-12-21 20:08:59 +01:00
committed by Matthias Grief
parent a04936f59e
commit 77e91ae393
119 changed files with 5374 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
:root {
--primary-color: #2563eb;
--secondary-color: #1d4ed8;
}
.sidebar {
background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}
.modal-overlay {
background-color: rgba(0, 0, 0, 0.5);
backdrop-filter: blur(4px);
}
.modal {
transform: translate(-50%, -50%) scale(0.95);
transition: transform 0.2s ease-out;
}
.modal.active {
transform: translate(-50%, -50%) scale(1);
}