Skip to content

Commit 977bc91

Browse files
committed
fix tickboxes for unacceptable behaviour
1 parent e51efb6 commit 977bc91

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

src/Components/Home/Sections/Coc.css

+5-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,11 @@
3030
}
3131

3232
ul {
33-
list-style-type: "\2705 ";
33+
list-style-type: "\2705 ";
3434
padding-left: 2rem;
3535
}
36+
37+
ul.unacceptable {
38+
list-style-type: "\274c ";
39+
}
3640
}

src/Components/Home/Sections/Coc.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ export default () => (
6161
</ul>
6262
<h2>Unacceptable Behavior</h2>
6363
<p>Unacceptable behaviors include, but is not limited to:</p>
64-
<ul>
64+
<ul className="unacceptable">
6565
<li>
6666
Abusive, discriminatory, derogatory or demeaning speech or actions
6767
</li>

0 commit comments

Comments
 (0)