From 83bdaed7aa2cd1ceca31af6cf3c58a5fd599cac5 Mon Sep 17 00:00:00 2001 From: m1guelmcf Date: Wed, 26 Nov 2025 10:56:59 -0300 Subject: [PATCH] =?UTF-8?q?padroniza=C3=A7=C3=A3o=20das=20pagina=C3=A7?= =?UTF-8?q?=C3=B5es?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/doctor/medicos/page.tsx | 2 +- app/globals.css | 62 ++++++++++++++++++------------------- app/page.tsx | 2 +- 3 files changed, 32 insertions(+), 34 deletions(-) diff --git a/app/doctor/medicos/page.tsx b/app/doctor/medicos/page.tsx index 0fc2575..f3f3c1e 100644 --- a/app/doctor/medicos/page.tsx +++ b/app/doctor/medicos/page.tsx @@ -50,7 +50,7 @@ export default function PacientesPage() { const [isModalOpen, setIsModalOpen] = useState(false); // --- Lógica de Paginação INÍCIO --- - const [itemsPerPage, setItemsPerPage] = useState(5); + const [itemsPerPage, setItemsPerPage] = useState(10); const [currentPage, setCurrentPage] = useState(1); const totalPages = Math.ceil(pacientes.length / itemsPerPage); diff --git a/app/globals.css b/app/globals.css index d0b1400..95ff1b4 100644 --- a/app/globals.css +++ b/app/globals.css @@ -1,8 +1,6 @@ -@import 'tailwindcss'; -@import 'tw-animate-css'; - +@import "tailwindcss"; +@import "tw-animate-css"; @custom-variant dark (&:is(.dark *)); - :root { --background: oklch(1 0 0); --foreground: oklch(0.145 0 0); @@ -75,33 +73,33 @@ } .high-contrast { - --background: oklch(0 0 0); - --foreground: oklch(1 0.5 100); - --card: oklch(0 0 0); - --card-foreground: oklch(1 0.5 100); - --popover: oklch(0 0 0); - --popover-foreground: oklch(1 0.5 100); - --primary: oklch(1 0.5 100); - --primary-foreground: oklch(0 0 0); - --secondary: oklch(0 0 0); - --secondary-foreground: oklch(1 0.5 100); - --muted: oklch(0 0 0); - --muted-foreground: oklch(1 0.5 100); - --accent: oklch(0 0 0); - --accent-foreground: oklch(1 0.5 100); - --destructive: oklch(0.5 0.3 30); - --destructive-foreground: oklch(0 0 0); - --border: oklch(1 0.5 100); - --input: oklch(0 0 0); - --ring: oklch(1 0.5 100); - --sidebar: oklch(0 0 0); - --sidebar-foreground: oklch(1 0.5 100); - --sidebar-primary: oklch(1 0.5 100); - --sidebar-primary-foreground: oklch(0 0 0); - --sidebar-accent: oklch(0 0 0); - --sidebar-accent-foreground: oklch(1 0.5 100); - --sidebar-border: oklch(1 0.5 100); - --sidebar-ring: oklch(1 0.5 100); + --background: oklch(0 0 0); + --foreground: oklch(1 0.5 100); + --card: oklch(0 0 0); + --card-foreground: oklch(1 0.5 100); + --popover: oklch(0 0 0); + --popover-foreground: oklch(1 0.5 100); + --primary: oklch(1 0.5 100); + --primary-foreground: oklch(0 0 0); + --secondary: oklch(0 0 0); + --secondary-foreground: oklch(1 0.5 100); + --muted: oklch(0 0 0); + --muted-foreground: oklch(1 0.5 100); + --accent: oklch(0 0 0); + --accent-foreground: oklch(1 0.5 100); + --destructive: oklch(0.5 0.3 30); + --destructive-foreground: oklch(0 0 0); + --border: oklch(1 0.5 100); + --input: oklch(0 0 0); + --ring: oklch(1 0.5 100); + --sidebar: oklch(0 0 0); + --sidebar-foreground: oklch(1 0.5 100); + --sidebar-primary: oklch(1 0.5 100); + --sidebar-primary-foreground: oklch(0 0 0); + --sidebar-accent: oklch(0 0 0); + --sidebar-accent-foreground: oklch(1 0.5 100); + --sidebar-border: oklch(1 0.5 100); + --sidebar-ring: oklch(1 0.5 100); } @theme inline { @@ -153,4 +151,4 @@ @apply bg-background text-foreground; transition: background-color 0.3s, color 0.3s; } -} \ No newline at end of file +} diff --git a/app/page.tsx b/app/page.tsx index 6a6ce1f..2779431 100644 --- a/app/page.tsx +++ b/app/page.tsx @@ -100,7 +100,7 @@ export default function InicialPage() {