Make experience and education sections more visible

This commit is contained in:
Ariful Alam
2022-03-28 20:31:02 +06:00
parent fabb4f67a7
commit df281242e1
2 changed files with 6 additions and 6 deletions

View File

@@ -8,9 +8,9 @@ const ListItem = ({ time, position, company }) => (
className="absolute w-2 h-2 bg-base-300 rounded-full border border-base-300 mt-1.5"
style={{ left: '-4.5px' }}
></div>
<div className="my-0.5 text-xs opacity-80">{time}</div>
<h3 className="font-semibold opacity-90">{position}</h3>
<div className="mb-4 font-normal opacity-90">{company}</div>
<div className="my-0.5 text-xs">{time}</div>
<h3 className="font-semibold">{position}</h3>
<div className="mb-4 font-normal">{company}</div>
</li>
);