first&last

This commit is contained in:
sbb45
2026-03-20 15:47:17 +05:00
commit d6441abdd2
230 changed files with 20367 additions and 0 deletions
+52
View File
@@ -0,0 +1,52 @@
@import 'tailwindcss';
@import '../../vendor/livewire/flux/dist/flux.css';
@source "../../vendor/laravel/framework/src/Illuminate/Pagination/resources/views/*.blade.php";
@source "../../storage/framework/views/*.php";
@source "../**/*.blade.php";
@source "../**/*.js";
@custom-variant dark (&:where(.dark, .dark *));
@theme {
--font-sans: "IBM Plex Sans", "Segoe UI", sans-serif;
}
body {
font-family: var(--font-sans);
}
[x-cloak] {
display: none !important;
}
.nav-link {
@apply block rounded-lg px-3 py-2 text-slate-300 transition hover:bg-slate-800 hover:text-white;
}
.nav-link-active {
@apply bg-slate-700 text-white;
}
.card {
@apply rounded-2xl border border-slate-200 bg-white shadow-sm;
}
.card-body {
@apply p-5;
}
.dashboard-chart-wrap {
height: 280px;
min-height: 280px;
max-height: 280px;
position: relative;
overflow: hidden;
}
.dashboard-chart-wrap canvas {
width: 100% !important;
height: 100% !important;
max-height: 280px !important;
display: block;
}