blob: 30753afdca2c301d40c9f5d406285156029945a3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
import styled from 'styled-components';
const PaginationStyles = styled.div`
text-align: center;
display: inline-grid;
grid-template-columns: repeat(4, auto);
align-items: stretch;
justify-content: center;
align-content: center;
margin: 2rem 0;
border: 1px solid ${props => props.theme.lightgrey};
border-radius: 10px;
& > * {
margin: 0;
padding: 15px 30px;
border-right: 1px solid ${props => props.theme.lightgrey};
&:last-child {
border-right: 0;
}
}
a[aria-disabled='true'] {
color: grey;
pointer-events: none;
}
`;
export default PaginationStyles;
|