_pagination.scss
25 lines
| 1 | .pagination { |
| 2 | padding-top: 20px; |
| 3 | |
| 4 | .components-button { |
| 5 | margin-right: 10px; |
| 6 | margin-bottom: 8px; |
| 7 | border-radius: 2px; |
| 8 | box-shadow: none; |
| 9 | min-width: 40px; |
| 10 | justify-content: center; |
| 11 | |
| 12 | &:focus { |
| 13 | box-shadow: inset 0 0 0 1px #fff, 0 0 0 1.5px #007cba; |
| 14 | } |
| 15 | |
| 16 | &:not( .is-primary ) { |
| 17 | background: #ffffff; |
| 18 | |
| 19 | &:focus { |
| 20 | box-shadow: 0 0 0 1.5px #007cba; |
| 21 | } |
| 22 | } |
| 23 | } |
| 24 | } |
| 25 |