Skip to content

Commit 2671ab0

Browse files
committed
fix numbering
1 parent bdc2882 commit 2671ab0

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

apps/learneth/src/components/BackButton/index.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ function BackButton({entity}: any) {
1414
const previousStep = entity && entity.steps[stepId - 1]
1515

1616
return (
17-
<nav className="navbar navbar-light bg-light justify-content-between pt-1 pb-1 ps-1">
18-
<ul className="nav me-auto">
17+
<nav className="navbar navbar-light bg-light d-flex justify-content-between pt-1 pb-1 ps-1">
18+
<ul className="d-flex nav me-auto">
1919
<li className="nav-item">
2020
<div
2121
className="btn back"
@@ -40,7 +40,7 @@ function BackButton({entity}: any) {
4040
)}
4141
</ul>
4242
{isDetailPage && (
43-
<form className="form-inline">
43+
<form className="form d-flex">
4444
{stepId > 0 && (
4545
<Link to={`/detail?id=${entity.id}&stepId=${stepId - 1}`} onClick={() => (window as any)._paq.push(['trackEvent', 'learneth', 'previous_step', `${entity.name}/${previousStep && previousStep.name}`])}>
4646
<i className="fas fa-chevron-left pe-1" />

apps/learneth/src/components/RepoImporter/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ function RepoImporter({ list, selectedRepo }: any): JSX.Element {
4848

4949
<div onClick={panelChange} style={{ cursor: 'pointer' }} className="container-fluid d-flex mb-3 small">
5050
<div className="d-flex pe-2 ps-2">
51-
<i className={`arrow-icon pt-1 fas fa-xs ${open ? 'fa-chevron-down' : 'fa-chevron-right'}`}></i>
51+
<i className={`arrow-icon pt-2 fas fa-xs ${open ? 'fa-chevron-down' : 'fa-chevron-right'}`}></i>
5252
</div>
5353
<div className="d-flex">Import another tutorial repo</div>
5454
</div>

0 commit comments

Comments
 (0)