Files

38 lines
496 B
SCSS
Raw Permalink Normal View History

2024-08-15 18:52:53 +03:00
.pagination {
margin: 20px auto 10px ;
display: flex;
justify-content: center;
align-items: center;
gap: 4px;
2024-08-16 14:34:39 +03:00
list-style: none;
2024-08-15 18:52:53 +03:00
padding: 0;
li {
2024-08-16 14:34:39 +03:00
a,span{
font-size: 14px;
border-radius: 12px;
padding: 4px 18px;
2024-08-17 19:23:19 +03:00
background: var(--p20);
2024-08-16 14:34:39 +03:00
2024-08-17 19:23:19 +03:00
&:hover{
background: var(--p30);
}
2024-08-16 14:34:39 +03:00
}
2024-08-15 18:52:53 +03:00
&.disabled {
pointer-events: none;
opacity: .7;
}
&.active {
2024-08-16 14:34:39 +03:00
span{
2024-08-17 19:23:19 +03:00
background: var(--p30);
2024-08-16 14:34:39 +03:00
}
2024-08-15 18:52:53 +03:00
}
}
}