Skip to content

Commit 918e393

Browse files
create class for custom pagination style
1 parent 8432b3a commit 918e393

1 file changed

Lines changed: 5 additions & 3 deletions

File tree

src/views/CVERecord/SearchResults.vue

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -153,9 +153,7 @@
153153
Back to top of page
154154
</button>
155155
</div>
156-
<nav class="pagination is-centered" role="navigation" aria-label="pagination"
157-
style="border-top: 2px solid #e5e5e5;"
158-
>
156+
<nav class="pagination is-centered cve-pagination" role="navigation" aria-label="pagination">
159157
<button @click=cveListSearchStore.handlePreviousPageChange
160158
:disabled="cveListSearchStore.pagination.currentPage <= 1 ? true : false"
161159
:aria-disabled="cveListSearchStore.pagination.currentPage <= 1 ? true : false"
@@ -281,4 +279,8 @@ function backToTop() {
281279
.cve-filter-container {
282280
border-bottom: 2px solid #e5e5e5;
283281
}
282+
283+
.cve-pagination {
284+
border-top: 2px solid #e5e5e5;
285+
}
284286
</style>

0 commit comments

Comments
 (0)