Skip to content

Commit 91855ce

Browse files
authored
[Docs Site] Change pagination arrows to gray and reduce size (#20489)
1 parent 8c5ca25 commit 91855ce

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

src/styles/pagination.css

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,17 @@
3232

3333
& > svg {
3434
align-self: self-end;
35-
color: theme("colors.cl1.brand.orange");
35+
color: var(--pagination-arrow-color);
36+
font-size: 1.25rem;
37+
margin-bottom: 1px;
3638
}
3739
}
3840
}
41+
42+
:root[data-theme="light"] {
43+
--pagination-arrow-color: theme("colors.cl1.gray.0");
44+
}
45+
46+
:root[data-theme="dark"] {
47+
--pagination-arrow-color: theme("colors.cl1.gray.9");
48+
}

0 commit comments

Comments
 (0)