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
4 changed files with 11 additions and 11 deletions

8
package-lock.json generated
View File

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

View File

@@ -1,7 +1,7 @@
{ {
"name": "@arifszn/gitprofile", "name": "@arifszn/gitprofile",
"description": "Create an automatic portfolio based on GitHub profile", "description": "Create an automatic portfolio based on GitHub profile",
"version": "2.0.0", "version": "2.0.1",
"license": "Apache-2.0", "license": "Apache-2.0",
"author": "arifszn", "author": "arifszn",
"repository": { "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" className="absolute w-2 h-2 bg-base-300 rounded-full border border-base-300 mt-1.5"
style={{ left: '-4.5px' }} style={{ left: '-4.5px' }}
></div> ></div>
<div className="my-0.5 text-xs opacity-80">{time}</div> <div className="my-0.5 text-xs">{time}</div>
<h3 className="font-semibold opacity-90">{degree}</h3> <h3 className="font-semibold">{degree}</h3>
<div className="mb-4 font-normal opacity-90">{institution}</div> <div className="mb-4 font-normal">{institution}</div>
</li> </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" className="absolute w-2 h-2 bg-base-300 rounded-full border border-base-300 mt-1.5"
style={{ left: '-4.5px' }} style={{ left: '-4.5px' }}
></div> ></div>
<div className="my-0.5 text-xs opacity-80">{time}</div> <div className="my-0.5 text-xs">{time}</div>
<h3 className="font-semibold opacity-90">{position}</h3> <h3 className="font-semibold">{position}</h3>
<div className="mb-4 font-normal opacity-90">{company}</div> <div className="mb-4 font-normal">{company}</div>
</li> </li>
); );