Files
new.anwisystems.com/enterprise/assets/sass/components/pagination/_pagination.scss
T

37 lines
758 B
SCSS
Raw Normal View History

2024-03-08 17:28:57 +05:30
/********************************
pagination
********************************/
.page-item {
margin: 0 4px;
.page-link {
display: block;
padding: 0;
width: 36px;
height: 36px;
line-height: 36px;
font-weight: fontweight(regular);
color: $color-dark !important;
background: $color-grey-light !important;
font-size: 18px;
text-align: center;
border: 0 !important;
@include border-radius(50% !important);
i {
font-size: 13px;
position: relative;
top: -2px;
}
}
}
.page-item.active .page-link,
.page-link:hover {
color: $color-white !important;
background: $theme-color !important;
}
/********************************
pagination END
********************************/