- Implement SettlementsPage for managing settlement requests with approval and rejection functionalities. - Create SmsPage for handling SMS templates, including creation, approval, rejection, and logging. - Add UserDetailPage to display detailed information about users. - Develop UsersPage for listing users with search, view, edit, and delete options. - Introduce new types for User, SmsTemplate, SmsLog, and Settlement to support the new features.
39 lines
1022 B
CSS
39 lines
1022 B
CSS
@import "tailwindcss";
|
|
|
|
@theme {
|
|
--color-primary-50: #f5f3ff;
|
|
--color-primary-100: #ede9fe;
|
|
--color-primary-200: #ddd6fe;
|
|
--color-primary-300: #c4b5fd;
|
|
--color-primary-400: #a78bfa;
|
|
--color-primary-500: #8b5cf6;
|
|
--color-primary-600: #7c3aed;
|
|
--color-primary-700: #6d28d9;
|
|
--color-primary-800: #5b21b6;
|
|
--color-primary-900: #4c1d95;
|
|
|
|
--color-bg-body: #f1f5f9;
|
|
--color-bg-card: #ffffff;
|
|
--color-bg-sidebar: #0f172a;
|
|
--color-bg-sidebar-active: rgba(139, 92, 246, 0.15);
|
|
|
|
--font-sans: "Vazirmatn", "Inter", ui-sans-serif, system-ui, sans-serif;
|
|
}
|
|
|
|
* {
|
|
font-family: var(--font-sans);
|
|
}
|
|
|
|
body {
|
|
background-color: var(--color-bg-body);
|
|
direction: rtl;
|
|
}
|
|
|
|
@keyframes scale-in {
|
|
from { opacity: 0; transform: scale(0.95); }
|
|
to { opacity: 1; transform: scale(1); }
|
|
}
|
|
|
|
.line-clamp-1 { overflow: hidden; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; }
|
|
.line-clamp-2 { overflow: hidden; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }
|