Skip to content

Commit 32a7a4b

Browse files
authored
fix(curriculum): remove forbidden hr from ol (#10786)
1 parent 6e6ed78 commit 32a7a4b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Diff for: client/src/curriculum/modules-list.scss

+2-1
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,10 @@
3333
grid-template-columns: auto auto auto 1fr;
3434
}
3535

36-
hr {
36+
&::before {
3737
border: none;
3838
border-top: 1px solid var(--text-inactive);
39+
content: "";
3940
grid-area: hr;
4041
margin: 0 0 1.5rem;
4142
width: 100%;

Diff for: client/src/curriculum/modules-list.tsx

-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ export function ModulesListList({
1414
const [tab, setTab] = useState(1);
1515
return (
1616
<ol className="modules-list-list">
17-
<hr />
1817
{modules.map((modulesList, i) => {
1918
return (
2019
<li

0 commit comments

Comments
 (0)