Skip to content

Commit

Permalink
fix: color pagination
Browse files Browse the repository at this point in the history
  • Loading branch information
nxhawk committed Jun 20, 2024
1 parent 022a3cb commit a800d43
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions src/components/CustomPagination.vue
Original file line number Diff line number Diff line change
Expand Up @@ -54,21 +54,20 @@
.paginate-buttons {
height: 40px;
width: 40px;
border-radius: 20px;
cursor: pointer;
background-color: rgb(242, 242, 242);
border: 1px solid rgb(217, 217, 217);
color: black;
border-radius: 2px;
font-weight: 500;
color: #606266;
&:hover{
background-color: #d8d8d8;
}
}
.active-page {
background-color: #3498db;
border: 1px solid #3498db;
background-color: #67c23a;
color: white;
&:hover{
background-color: #2988c8;
background-color: #70d33e;
}
}
Expand Down

0 comments on commit a800d43

Please sign in to comment.