From ca1875251329564356e811a7a16bb3c2e3ba36fd Mon Sep 17 00:00:00 2001 From: Peter Lauck Date: Wed, 8 Nov 2023 17:47:35 +0000 Subject: [PATCH] add `text-decoration: none` --- .../src/molecules/paginator/paginator.component.scss | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/libs/design/src/molecules/paginator/paginator.component.scss b/libs/design/src/molecules/paginator/paginator.component.scss index b50911069d..e6964a550a 100644 --- a/libs/design/src/molecules/paginator/paginator.component.scss +++ b/libs/design/src/molecules/paginator/paginator.component.scss @@ -8,6 +8,12 @@ $border-radius: 3px; } .daff-paginator { + &__page-link, + &__previous, + &__next { + text-decoration: none; + } + &__previous, &__next { @include interactions.clickable; @@ -30,7 +36,7 @@ $border-radius: 3px; &__ellipsis { height: 2rem; width: 2rem; - text-align: center + text-align: center; } &__page-link { @@ -51,7 +57,7 @@ $border-radius: 3px; z-index: 2; } - &:after { + &::after { content: ''; border-radius: $border-radius; position: absolute; @@ -66,7 +72,7 @@ $border-radius: 3px; &:hover, &:active, &.selected { - &:after { + &::after { opacity: 1; } }