Created
March 16, 2022 12:13
-
-
Save wpflames/6f18c0de2ed9f3862585624502f38874 to your computer and use it in GitHub Desktop.
Archive Pagination SCSS
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Archive Pagination | |
| /************************************/ | |
| .navigation.pagination { | |
| a.page-numbers { | |
| border: 1px solid rgba(0, 0, 0, 0.3); | |
| color: black; | |
| padding: 10px; | |
| text-decoration: none; | |
| &:hover { | |
| background: black; | |
| color: white; | |
| } | |
| } | |
| span.current { | |
| padding: 10px; | |
| background: black; | |
| color: white; | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment