diff --git a/web-next/app/[locale]/changelogs/page.tsx b/web-next/app/[locale]/changelogs/page.tsx index be863d5..2b0677e 100644 --- a/web-next/app/[locale]/changelogs/page.tsx +++ b/web-next/app/[locale]/changelogs/page.tsx @@ -29,7 +29,7 @@ export default async function ChangelogsPage({ const sp = await searchParams const page = Math.max(1, Number(sp.page) || 1) setRequestLocale(locale) - const { commits, totalPages } = await getCommits(page, 10) + const { commits, totalPages } = await getCommits(page, 5) return (
diff --git a/web-next/app/globals.css b/web-next/app/globals.css index 21941f7..3e856a2 100644 --- a/web-next/app/globals.css +++ b/web-next/app/globals.css @@ -101,20 +101,26 @@ textarea:focus { background: hsla(0, 0%, 100%, 0.1); color: #fff; } +/* Paginación con el estilo de los botones del tema (borde + fondo tenue + hover). */ .nw-page-link { display: inline-block; - min-width: 34px; - padding: 4px 8px; - margin: 0 2px; + min-width: 42px; + padding: 9px 14px; + margin: 0 3px; border: 2px solid #352e2b; - color: #2471a9; + background: hsla(0, 0%, 100%, 0.05); + color: #ebdec2; + text-align: center; + transition: 0.3s; } .nw-page-link:hover { + background: hsla(0, 0%, 100%, 0.1); color: #fff; } .nw-page-current { border-color: #b17c02; color: #d79602; + background: hsla(40, 90%, 45%, 0.12); } /* Contenido de posts del foro */ .post-content {