Skip to content

Commit

Permalink
fix: pagination styles
Browse files Browse the repository at this point in the history
  • Loading branch information
moebiusmania committed Apr 21, 2024
1 parent adca01a commit 9bb09b3
Showing 1 changed file with 14 additions and 2 deletions.
16 changes: 14 additions & 2 deletions components/Pagination.server.vue
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ div {
& nav {
display: flex;
justify-content: space-between;
align-items: center;
&>a {
opacity: 1;
Expand All @@ -57,8 +58,19 @@ div {
}
}
&>button {
color: var(--text-base-content)
& button {
color: var(--text-base-content);
background-color: transparent;
border: 0;
cursor: pointer;
transition: all 0.3s ease;
padding: var(--sp-1) var(--sp-2);
border-radius: 2px;
&:hover {
color: var(--white);
background-color: var(--primary);
}
}
&>button:disabled {
Expand Down

0 comments on commit 9bb09b3

Please sign in to comment.