Files
nomad/ui/app/styles/core/pagination.scss
Michael Lange a6a58ce55d Remove extranneous order property
The "default" order values as set by Bulma are different for different
breakpoints. Since this wasn't considering breakpoints, it resulted
in the unexpected reordering of pagination elements as different page
widths. Turns out removing this property gives us what we want.
2020-04-02 13:27:29 -07:00

32 lines
555 B
SCSS

.pagination {
color: $grey;
.pagination-numbers {
padding: 0.75rem 0.5rem;
white-space: nowrap;
font-weight: $weight-semibold;
font-size: 0.85rem;
}
.pagination-previous,
.pagination-next,
.pagination-link {
color: $text;
border: none;
border-radius: 0;
margin: 0;
padding: 0.75rem 0.5rem;
height: auto;
text-decoration: none;
&:hover {
box-shadow: none;
background-color: darken($white-ter, 5%);
}
&:active {
background-color: darken($white-ter, 10%);
}
}
}