[Agregar] Estilos para los botones de paginación

This commit is contained in:
Astra 2022-02-21 11:16:01 -06:00
parent 0cb93b180c
commit 12f2e11394
2 changed files with 7 additions and 3 deletions

View file

@ -17,6 +17,8 @@
<?php defined('NABU') || exit() ?>
<a href="<?= $view . '&page=' . $page - 1 ?>">Anterior</a>
<span><?= $page ?></span>
<a href="<?= $view . '&page=' . $page + 1 ?>">Siguiente</a>
<div class="pages">
<a href="<?= $view . '&page=' . $page - 1 ?>" class = "pages__move">🡠</a>
<span class = "pages__actual"><?= $page ?></span>
<a href="<?= $view . '&page=' . $page + 1 ?>" class = "pages__move">🡢</a>
</div>

View file

@ -26,6 +26,7 @@
'pages/all-articles/all-articles.css',
'components/articles/articles.css',
'components/footer/footer.css',
'components/pagination/pagination.css',
) ?>
<!-- Estilos para el responsive design -->
@ -35,6 +36,7 @@
array('file' => 'components/search/search-desktop.css', 'attributes' => 'media="screen and (min-width: 650px)"'),
array('file' => 'pages/all-articles/all-articles-tablet.css', 'attributes' => 'media="screen and (min-width: 650px)"'),
array('file' => 'pages/all-articles/all-articles-desktop.css', 'attributes' => 'media="screen and (min-width: 1024px)"'),
array('file' => 'components/pagination/pagination-desktop.css', 'attributes' => 'media="screen and (min-width: 650px)"'),
) ?>
<!-- Archivos de javascript -->