Skip to content

Commit 40985c0

Browse files
authored
fix tickboxes for unacceptable behaviour (#3)
1 parent 8496eb5 commit 40985c0

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

src/Components/Home/Sections/Coc.css

Lines changed: 5 additions & 1 deletion
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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ export default () => (
6060
</ul>
6161
<h2>Unacceptable Behavior</h2>
6262
<p>Unacceptable behaviors include, but is not limited to:</p>
63-
<ul>
63+
<ul className="unacceptable">
6464
<li>
6565
Abusive, discriminatory, derogatory or demeaning speech or actions
6666
</li>

0 commit comments

Comments
 (0)