[resumes][refactor] Update app UI (#434)

* [resumes][refactor] Update marketing page tabs

* [resumes][feat] mobile responsive resume rows on browse

* [resumes][fix] padding on pdf view in mobile

* [resumes][chore] add uni years to labels

Co-authored-by: Terence Ho <>
Co-authored-by: peirong.wu <wupeirong294@gmail.com>
This commit is contained in:
Terence
2022-10-27 16:49:30 +08:00
committed by GitHub
parent 410d8712c3
commit e6538a62a5
8 changed files with 133 additions and 119 deletions

View File

@ -85,7 +85,7 @@ export default function Pagination({
}
if (lastAddedPage < current - pagePadding - 1) {
elements.push(<PaginationEllipsis />);
elements.push(<PaginationEllipsis key="ellipse-1" />);
}
for (let i = current - pagePadding; i <= current + pagePadding; i++) {
@ -93,7 +93,7 @@ export default function Pagination({
}
if (lastAddedPage < end - pagePadding - 1) {
elements.push(<PaginationEllipsis />);
elements.push(<PaginationEllipsis key="ellipse-2" />);
}
for (let i = end - pagePadding; i <= end; i++) {