Skip to content

Commit

Permalink
Change list to div
Browse files Browse the repository at this point in the history
  • Loading branch information
Otanga-Otieno committed Mar 18, 2022
1 parent 79628d3 commit eb2a9d0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions index/src/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,13 @@ function App() {
<h2>Sort Algorithms</h2>

<div>
<ol style={{listStylePosition: "inside"}}>
<div style={{listStylePosition: "inside"}}>
<div className='rounded shadow p-2 my-3 bg-white' > <i className='fas fa-droplet fa-2x mx-5'></i> <div><Link to={"bubblesort"}>Bubble Sort</Link></div> </div>
<div className='rounded shadow p-2 my-3 bg-white' > <i className='fas fa-tree fa-2x mx-5'></i> <div><Link to={"heapsort"}>Heap Sort</Link></div> </div>
<div className='rounded shadow p-2 my-3 bg-white' > <i className='fas fa-arrow-right-to-bracket fa-2x mx-5'></i> <div><Link to={"insertionsort"}>Insertion Sort</Link></div> </div>
<div className='rounded shadow p-2 my-3 bg-white' > <i className='fas fa-jet-fighter fa-2x mx-5'></i> <div><Link to={"quicksort"}>Quick Sort</Link></div> </div>
<div className='rounded shadow p-2 my-3 bg-white' > <i className='fas fa-arrow-up-short-wide fa-2x mx-5'></i> <div><Link to={"selectionsort"}>Selection Sort</Link></div> </div>
</ol>
</div>
</div>

</div>
Expand Down

0 comments on commit eb2a9d0

Please sign in to comment.