Skip to content

Commit

Permalink
fix(pagination): fix tokens based on audit
Browse files Browse the repository at this point in the history
  • Loading branch information
tw15egan committed Feb 22, 2022
1 parent 41994b6 commit 69eb5d4
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
display: block;
width: 0;
height: $spacing-02;
background-color: $background-brand;
background-color: $border-interactive;
content: '';
opacity: 0;
transition: width $duration-fast-02 motion(standard, productive);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@
/// @param {Number} $select-icon-top-position [$spacing-05]
/// @param {Number} $select-icon-left-position [$spacing-05]
@mixin pagination-nav(
$color: $text-secondary,
$text-color-active: $text-secondary,
$color: $text-primary,
$text-color-active: $text-primary,
$background-color-hover: $background-hover,
$background-color-active: initial,
$font-weight: 400,
Expand Down Expand Up @@ -78,7 +78,7 @@
min-width: $button-min-width;
padding: $button-padding;
border-radius: 0;
color: $text-secondary;
color: $text-primary;
font-weight: $font-weight;
line-height: 1;
outline: 0;
Expand All @@ -90,7 +90,7 @@

&:hover {
background-color: $background-color-hover;
color: $text-secondary;
color: $text-primary;
}

&:focus {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@

span.#{$prefix}--pagination__text {
margin-left: $spacing-05;
color: $text-secondary;
color: $text-primary;
}

.#{$prefix}--pagination__button,
Expand Down

0 comments on commit 69eb5d4

Please sign in to comment.