import styled from 'styled-components'
const PaginationStyled = styled.ul`
display: flex;
justify-content: center;
width: 100%;
.link {
color: inherit;
display: flex;
align-items: center;
justify-content: center;
width: 40px;
height: 40px;
background-color: #ffffff;
border: solid 1px #c5d0e1;
cursor: pointer;
> div {
color: #3b495e;
font-size: 14px;
height: 100%;
width: 100%;
display: flex;
align-items: center;
justify-content: center;
}
}
.active {
background-color: #e7f0f7;
border: solid 1px #afcef3;
pointer-events: none;
cursor: default;
> div {
color: #314056;
}
}
.inactive {
pointer-events: none;
cursor: default;
}
`
export default PaginationStyled
|