Merge pull request #58 from arifszn/57-make-experience-and-education-sections-more-visible

feat: make experience and education sections more visible
This commit is contained in:
Ariful Alam 2022-03-28 20:33:39 +06:00 committed by GitHub
commit aef59d1d68
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 11 additions and 11 deletions

8
package-lock.json generated
View File

@ -1,12 +1,12 @@
{
"name": "gitprofile",
"version": "2.0.0",
"name": "@arifszn/gitprofile",
"version": "2.0.1",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "gitprofile",
"version": "2.0.0",
"name": "@arifszn/gitprofile",
"version": "2.0.1",
"license": "Apache-2.0",
"dependencies": {
"react": "^17.0.2",

View File

@ -1,7 +1,7 @@
{
"name": "@arifszn/gitprofile",
"description": "Create an automatic portfolio based on GitHub profile",
"version": "2.0.0",
"version": "2.0.1",
"license": "Apache-2.0",
"author": "arifszn",
"repository": {

View File

@ -8,9 +8,9 @@ const ListItem = ({ time, degree, institution }) => (
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">{degree}</h3>
<div className="mb-4 font-normal opacity-90">{institution}</div>
<div className="my-0.5 text-xs">{time}</div>
<h3 className="font-semibold">{degree}</h3>
<div className="mb-4 font-normal">{institution}</div>
</li>
);

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>
);