first load
Some checks failed
Build, Push, Publish / Build & Release (push) Failing after 2s
Sync Repo / sync (push) Failing after 2s

This commit is contained in:
2025-12-16 04:40:00 -03:00
parent 9f33a94e0e
commit 6fa41a771d
856 changed files with 70411 additions and 1 deletions

57
styles/_pagination.scss Normal file
View File

@@ -0,0 +1,57 @@
/***** Pagination *****/
.pagination {
margin: 20px 0;
text-align: center;
&-next, &-prev, &-first, &-last {
display: inline-block;
&-link {
@extend .button;
}
}
&-first, &-last {
&-link {
padding: 0 10px;
}
&-text {
@include visually-hidden;
}
}
&-next {
&-link {
padding-right: 10px;
}
&-text {
margin-right: 10px;
}
[dir="rtl"] & {
&-link {
padding-left: 10px;
}
&-text {
margin-left: 10px;
}
}
}
&-prev {
&-link {
padding-left: 10px;
}
&-text {
margin-left: 10px;
}
[dir="rtl"] & {
&-link {
padding-right: 10px;
}
&-text {
margin-right: 10px;
}
}
}
}