mirror of
https://github.com/NohamR/gitprofile.git
synced 2026-05-25 04:17:13 +00:00
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:
8
package-lock.json
generated
8
package-lock.json
generated
@@ -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",
|
||||||
|
|||||||
@@ -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": {
|
||||||
|
|||||||
@@ -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>
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|||||||
@@ -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>
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user