feat: Set up initial monorepo structure for admin and mobile applications with core configurations and database integration.

This commit is contained in:
2026-02-20 12:58:54 +01:00
parent 5e2d5fb3ae
commit b7f8221095
52 changed files with 2200 additions and 175 deletions

View File

@@ -9,11 +9,16 @@
body {
@apply bg-gray-50 text-gray-900 antialiased;
font-family: system-ui, -apple-system, sans-serif;
}
* {
@apply border-gray-200;
}
h1, h2, h3, h4 {
font-family: 'Syne', system-ui, sans-serif;
}
}
@layer components {
@@ -22,15 +27,15 @@
}
.sidebar-link-active {
@apply bg-brand-50 text-brand-600;
@apply bg-brand-50 text-brand-600 border-l-[3px] border-brand-500 rounded-l-none;
}
.stat-card {
@apply rounded-xl border bg-white p-6 shadow-sm;
@apply rounded-lg border bg-white p-6;
}
.data-table th {
@apply bg-gray-50 px-4 py-3 text-left text-xs font-semibold uppercase tracking-wide text-gray-500;
@apply bg-gray-50 px-4 py-3 text-left text-xs font-semibold uppercase tracking-wide text-gray-500 border-b-2 border-gray-200;
}
.data-table td {
@@ -42,6 +47,6 @@
}
.data-table tr:hover td {
@apply bg-gray-50;
@apply bg-gray-50/70;
}
}