Skip to content

Commit 9c49265

Browse files
committed
[B] Fix pagination active color, text-transform
Resolves MNFLD-1108
1 parent f85e284 commit 9c49265

File tree

1 file changed

+7
-1
lines changed
  • client/src/global/components/utility/Pagination

1 file changed

+7
-1
lines changed

client/src/global/components/utility/Pagination/styles.js

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,7 @@ export const Link = styled.a`
5656
gap: 8px;
5757
padding: ${LINK_PADDING}px;
5858
text-decoration: none;
59+
text-transform: uppercase;
5960
cursor: pointer;
6061
6162
&[aria-disabled="true"] {
@@ -65,7 +66,12 @@ export const Link = styled.a`
6566
6667
&[aria-current="page"] {
6768
pointer-events: none;
68-
color: var(--color-interaction-light);
69+
color: var(--highlight-color);
70+
71+
.browse &,
72+
.scheme-light & {
73+
text-decoration-line: underline;
74+
}
6975
}
7076
`;
7177

0 commit comments

Comments
 (0)