37 lines
633 B
SCSS
37 lines
633 B
SCSS
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: MPL-2.0
|
|
*/
|
|
|
|
.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%);
|
|
}
|
|
}
|
|
}
|