Skip to content

Commit 462675a

Browse files
authored
docs: improve web accessibility by hiding non-semantic character (#20205)
1 parent c070e65 commit 462675a

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

docs/src/assets/scss/eslint-site-footer.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
margin-inline-end: 0.5rem;
3030

3131
&:not(:last-of-type)::after {
32-
content: "|";
32+
content: "|" / "";
3333
margin-left: 0.5rem;
3434
margin-inline-start: 0.5rem;
3535
}

docs/src/assets/scss/languages.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
color: var(--link-color);
2828

2929
&::after {
30-
content: " ✔️";
30+
content: " ✔️" / "check mark";
3131
white-space: pre;
3232
color: rgba(100%, 0%, 0%, 0);
3333
text-shadow: 0 0 0 var(--headings-color);

docs/src/assets/scss/versions.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
color: var(--link-color);
2929

3030
&::after {
31-
content: " ✔️";
31+
content: " ✔️" / "check mark";
3232
white-space: pre;
3333
color: rgba(100%, 0%, 0%, 0);
3434
text-shadow: 0 0 0 var(--headings-color);

0 commit comments

Comments
 (0)