41 lines
856 B
CSS
41 lines
856 B
CSS
.page-box ul {
|
|
display: flex;
|
|
justify-content: flex-end;
|
|
flex-wrap: wrap;
|
|
font-size: 1rem;
|
|
color: #fff;
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
.page-box ul li {
|
|
padding: 10px;
|
|
white-space: nowrap;
|
|
cursor: pointer;
|
|
}
|
|
|
|
|
|
.page-box ul .ant-pagination-item {
|
|
background-image: url(./img/pagination/small-btn.svg);
|
|
background-repeat: no-repeat;
|
|
background-position: center;
|
|
background-size: contain;
|
|
padding: 10px 15px 10px 25px;
|
|
background-color: transparent;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
border: none;
|
|
}
|
|
|
|
.page-box ul .ant-pagination-item.ant-pagination-item-active {
|
|
background-image: url(./img/pagination/small-btn02.svg);
|
|
background-repeat: no-repeat;
|
|
background-position: center;
|
|
background-size: contain;
|
|
padding: 10px 15px 10px 25px;
|
|
}
|
|
|
|
.page-box .ant-pagination-item a {
|
|
color: #fff;
|
|
}
|