50 lines
876 B
SCSS
50 lines
876 B
SCSS
.pagination {
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
flex-wrap: wrap;
|
|
margin: 15px 0;
|
|
button {
|
|
background-color: transparent;
|
|
min-width: 20px;
|
|
min-height: 20px;
|
|
line-height: 18px;
|
|
text-align: center;
|
|
padding: 1px 6px;
|
|
font-size: 15px;
|
|
font-weight: 300;
|
|
color: var(--prime);
|
|
|
|
&.active {
|
|
background: var(--sky);
|
|
color: black;
|
|
}
|
|
&.next {
|
|
border-color: transparent;
|
|
line-height: 18px;
|
|
}
|
|
}
|
|
.dots {
|
|
width: 24px;
|
|
height: 24px;
|
|
background: transparent url("~projects/app-a/src/assets/images/icons/more_horiz_20dp.svg") no-repeat center;
|
|
}
|
|
.count {
|
|
display: flex;
|
|
flex-grow: 1;
|
|
color: var(--black);
|
|
}
|
|
}
|
|
|
|
|
|
@media screen and (max-width: 767px) {
|
|
.pagination {
|
|
.next {
|
|
display: none;
|
|
}
|
|
.count {
|
|
display: none;
|
|
}
|
|
}
|
|
}
|