Skip to content

Commit

Permalink
provided top margin to bullet points in achievement cards
Browse files Browse the repository at this point in the history
  • Loading branch information
heyyakash committed Dec 1, 2023
1 parent 2cf73d7 commit cfe3d06
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/Achievements/Achievements.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ const Card = ({ x }) => {
<img src={x["imageLink"]} alt="logo" className='event-poster' />
</div>
<div className='event-content-container'>
<h3 style={{ textAlign: "center", fontSize: "1rem" }}>{x["Name"]}</h3>
<ul>
<h3 style={{ textAlign: "center", fontSize: "1.2rem" }}>{x["Name"]}</h3>
<ul style = {{marginTop:"10px",}}>
{x["Company and Position"] && <li>{x["Company and Position"]}</li>}
{x["achievements"].map((x, i) => <li key={x + i.toString()}>{x}</li>)}
{/* <li></li> */}
Expand Down

0 comments on commit cfe3d06

Please sign in to comment.