| 1 |
.give-campaign-components-pagination { |
| 2 |
display: flex; |
| 3 |
padding: 8px 0; |
| 4 |
flex-direction: row; |
| 5 |
|
| 6 |
&__pages { |
| 7 |
display: flex; |
| 8 |
|
| 9 |
&-links { |
| 10 |
display: flex; |
| 11 |
flex-direction: row; |
| 12 |
gap: 4px; |
| 13 |
|
| 14 |
button { |
| 15 |
flex-grow: 0; |
| 16 |
display: flex; |
| 17 |
flex-direction: row; |
| 18 |
justify-content: center; |
| 19 |
align-items: center; |
| 20 |
gap: 8px; |
| 21 |
text-decoration: none !important; |
| 22 |
border-radius: 4px; |
| 23 |
border: solid 1px #e5e7eb; |
| 24 |
font-weight: normal; |
| 25 |
font-size: 14px; |
| 26 |
line-height: 1.43; |
| 27 |
} |
| 28 |
|
| 29 |
&-arrow { |
| 30 |
padding: 8px; |
| 31 |
|
| 32 |
&-disabled { |
| 33 |
padding: 8px; |
| 34 |
opacity: 0.7; |
| 35 |
cursor: not-allowed; |
| 36 |
|
| 37 |
svg { |
| 38 |
opacity: 0.7; |
| 39 |
} |
| 40 |
} |
| 41 |
} |
| 42 |
|
| 43 |
&-page { |
| 44 |
padding: 8px 14px; |
| 45 |
color: #060c1a !important; |
| 46 |
} |
| 47 |
|
| 48 |
button:not(.give-campaign-components-pagination__pages-links-current, .give-campaign-components-pagination__pages-links-arrow-disabled):hover { |
| 49 |
border: solid 1px #459948; |
| 50 |
background-color: #f2fff3; |
| 51 |
} |
| 52 |
|
| 53 |
&-current { |
| 54 |
border: solid 1px #459948; |
| 55 |
background-color: #459948; |
| 56 |
color: #fff !important; |
| 57 |
} |
| 58 |
|
| 59 |
} |
| 60 |
} |
| 61 |
} |
| 62 |
|