Skip to content

Commit

Permalink
add text-decoration: none
Browse files Browse the repository at this point in the history
  • Loading branch information
griest024 committed Nov 8, 2023
1 parent 93267b6 commit ca18752
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions libs/design/src/molecules/paginator/paginator.component.scss
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,12 @@ $border-radius: 3px;
}

.daff-paginator {
&__page-link,
&__previous,
&__next {
text-decoration: none;
}

&__previous,
&__next {
@include interactions.clickable;
Expand All @@ -30,7 +36,7 @@ $border-radius: 3px;
&__ellipsis {
height: 2rem;
width: 2rem;
text-align: center
text-align: center;
}

&__page-link {
Expand All @@ -51,7 +57,7 @@ $border-radius: 3px;
z-index: 2;
}

&:after {
&::after {
content: '';
border-radius: $border-radius;
position: absolute;
Expand All @@ -66,7 +72,7 @@ $border-radius: 3px;
&:hover,
&:active,
&.selected {
&:after {
&::after {
opacity: 1;
}
}
Expand Down

0 comments on commit ca18752

Please sign in to comment.