design: changed appearance of arrows on pagination

This commit is contained in:
frosty
2026-04-02 01:16:39 +03:00
parent 478aafcf87
commit f29fa38398
2 changed files with 10 additions and 2 deletions

View File

@@ -192,7 +192,7 @@ int build_pagination(int page,
if (page > 1) {
char *href = href_builder(page - 1, data);
count = add_link_to_collection(href, "<", "pagination-btn prev",
count = add_link_to_collection(href, "", "pagination-btn prev",
out_matrix, out_inner_counts, count);
free(href);
}
@@ -209,7 +209,7 @@ int build_pagination(int page,
}
char *href = href_builder(page + 1, data);
count = add_link_to_collection(href, ">", "pagination-btn next",
count = add_link_to_collection(href, "", "pagination-btn next",
out_matrix, out_inner_counts, count);
free(href);