Skip to content

Commit

Permalink
fix(curriculum): remove forbidden hr from ol (#10786)
Browse files Browse the repository at this point in the history
  • Loading branch information
fiji-flo authored Mar 25, 2024
1 parent 6e6ed78 commit 32a7a4b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
3 changes: 2 additions & 1 deletion client/src/curriculum/modules-list.scss
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,10 @@
grid-template-columns: auto auto auto 1fr;
}

hr {
&::before {
border: none;
border-top: 1px solid var(--text-inactive);
content: "";
grid-area: hr;
margin: 0 0 1.5rem;
width: 100%;
Expand Down
1 change: 0 additions & 1 deletion client/src/curriculum/modules-list.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ export function ModulesListList({
const [tab, setTab] = useState(1);
return (
<ol className="modules-list-list">
<hr />
{modules.map((modulesList, i) => {
return (
<li
Expand Down

0 comments on commit 32a7a4b

Please sign in to comment.