Spaces:
Running
Running
File size: 976 Bytes
be54038 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 | @tailwind base;
@tailwind components;
@tailwind utilities;
@layer base {
body {
@apply bg-gray-50 text-gray-900;
font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
}
/* ββ Brand accent utilities βββββββββββββββββββββββββββββββββββββββ */
.btn-primary {
@apply py-3 px-6 rounded-xl font-semibold text-white transition-colors;
background-color: #2563EB;
}
.btn-primary:hover { background-color: #1d4ed8; }
.btn-primary:disabled { @apply opacity-50 cursor-not-allowed; }
/* ββ react-pdf ββββββββββββββββββββββββββββββββββββββββββββββββββββ */
.react-pdf__Page {
@apply shadow-md;
}
.react-pdf__Page__canvas {
@apply block;
}
/* Smooth scroll for the PDF pane */
.pdf-scroll-container {
scroll-behavior: smooth;
}
|