mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-02-04 22:16:08 +00:00
36 lines
581 B
SCSS
36 lines
581 B
SCSS
@import 'admin/globals/variables';
|
|
@import "admin/variables";
|
|
|
|
.pagination {
|
|
text-align: center;
|
|
margin: 2em 0 1em;
|
|
padding: 10px 0;
|
|
|
|
.page {
|
|
padding: 5px 8px;
|
|
text-align: center;
|
|
display: inline-block;
|
|
text-align: center;
|
|
|
|
&.current {
|
|
background-color: $color-2;
|
|
border-radius: 3px;
|
|
color: $color-1;
|
|
}
|
|
}
|
|
|
|
button {
|
|
margin: 0 0.35em;
|
|
|
|
&.active {
|
|
background-color: darken($spree-blue, 15%);
|
|
cursor: default;
|
|
}
|
|
|
|
&.disabled {
|
|
background-color: $disabled_button;
|
|
cursor: default;
|
|
}
|
|
}
|
|
}
|