mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-02-02 21:57:17 +00:00
39 lines
595 B
SCSS
39 lines
595 B
SCSS
.pagination {
|
|
text-align: center;
|
|
margin: 2em 0 1em;
|
|
padding: 10px 0;
|
|
|
|
background-color: $light-grey;
|
|
|
|
.page {
|
|
padding: 5px 8px;
|
|
text-align: center;
|
|
display: inline-block;
|
|
text-align: center;
|
|
|
|
&.current {
|
|
background-color: $green;
|
|
border-radius: 3px;
|
|
color: $white;
|
|
}
|
|
}
|
|
|
|
button {
|
|
margin: 0 0.35em;
|
|
|
|
background-color: $white;
|
|
color: $near-black;
|
|
box-shadow: $color-btn-shadow;
|
|
|
|
&.active {
|
|
color: $white;
|
|
background-color: $red;
|
|
cursor: default;
|
|
}
|
|
|
|
&.disabled {
|
|
display: none;
|
|
}
|
|
}
|
|
}
|