Skip to content

Commit

Permalink
style: add small styling adjustments
Browse files Browse the repository at this point in the history
  • Loading branch information
jchojna committed Apr 21, 2024
1 parent 3af3f3a commit 87acd2a
Show file tree
Hide file tree
Showing 8 changed files with 34 additions and 40 deletions.
5 changes: 0 additions & 5 deletions src/components/MobileMenu.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -26,13 +26,8 @@
display: flex;
height: $menu-item-height;
padding-right: 10px;
// pointer-events: none;
width: 100%;

&--active {
// pointer-events: all;
}

&--mobileHeader {
left: 0;
margin: 0;
Expand Down
11 changes: 6 additions & 5 deletions src/components/icons/IconLink.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -85,10 +85,7 @@

&.about {
.link {
background-color: rgba(
$color: $color-about-dark,
$alpha: $background-opacity
);
background-color: $color-about-dark;
fill: $color-about-light;

&::before {
Expand All @@ -107,7 +104,7 @@
}

.name {
color: $color-about-white;
color: $color-about-light;
}
}

Expand All @@ -128,5 +125,9 @@
background-color: $color-contact-black;
}
}

.name {
color: $color-contact-light;
}
}
}
6 changes: 3 additions & 3 deletions src/components/resume/ResumeDetails.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -22,14 +22,14 @@ $gap: 10px;

.detail {
color: $color-resume-accent;
font-size: 1.1rem;
font-size: 1.2rem;
font-weight: 700;
line-height: 1.5;
margin: 0;

&-2,
&-3 {
border-left: $separator-width solid $color-resume-black;
border-left: $separator-width solid $color-resume-dark;
padding-left: $gap;
}

Expand All @@ -50,7 +50,7 @@ $gap: 10px;
position: relative;

&::before {
background-color: $color-resume-black;
background-color: $color-resume-dark;
border-radius: calc($border-radius / 2);
content: '';
height: 1rem;
Expand Down
44 changes: 22 additions & 22 deletions src/content/resume.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,28 @@
"experience": {
"label": "Experience",
"items": [
{
"label": "Frontend Development",
"items": [
{
"label": "Jun 2021 - Present",
"items": ["Frontend Developer", "Appsilon", "Remote"],
"description": [
"collaborating in a multinational team within a rapidly growing company, providing consultancy services to a diverse range of clients, including Fortune 500 companies from Pharma, Biodiversity, Energy, and Sport industries",
"contributed to the development of complex dashboard applications, with a primary focus on frontend development and occasional contributions to backend development in R. Projects examples: Mbaza - a biodiversity project [TypeScript | React | Electron], Supply Chain application [TypeScript | Next.js | ReactFlow], dashboard applications [VanillaJS | Sass | R]",
"tech leader in a few small-scale projects since Q4 2022"
]
},
{
"label": "Jun 2020 - Jun 2021",
"items": ["Junior Frontend Developer", "Appsilon", "Remote"],
"description": [
"focused on frontend development for commercial dashboard applications, involving UI/UX design preparation in Figma",
"undertook internal tasks such as website maintenance (e.g., appsilon.com [Typescript | Gatsby | GraphQL]), creation of landing pages (e.g., shiny.tools, shinymanifesto.com [Vanilla JS]), and maintenance of open-source projects"
]
}
]
},
{
"label": "Architecture",
"items": [
Expand Down Expand Up @@ -52,28 +74,6 @@
"items": ["3d software tutor", "Euro Info Group", "Warsaw, Poland"]
}
]
},
{
"label": "Frontend Development",
"items": [
{
"label": "Jun 2021 - Present",
"items": ["Frontend Developer", "Appsilon", "Remote"],
"description": [
"collaborating in a multinational team within a rapidly growing company, providing consultancy services to a diverse range of clients, including Fortune 500 companies from Pharma, Biodiversity, Energy, and Sport industries",
"contributed to the development of complex dashboard applications, with a primary focus on frontend development and occasional contributions to backend development in R. Projects examples: Mbaza - a biodiversity project [TypeScript | React | Electron], Supply Chain application [TypeScript | Next.js | ReactFlow], dashboard applications [VanillaJS | Sass | R]",
"tech leader in a few small-scale projects since Q4 2022"
]
},
{
"label": "Jun 2020 - Jun 2021",
"items": ["Junior Frontend Developer", "Appsilon", "Remote"],
"description": [
"focused on frontend development for commercial dashboard applications, involving UI/UX design preparation in Figma",
"undertook internal tasks such as website maintenance (e.g., appsilon.com [Typescript | Gatsby | GraphQL]), creation of landing pages (e.g., shiny.tools, shinymanifesto.com [Vanilla JS]), and maintenance of open-source projects"
]
}
]
}
]
},
Expand Down
4 changes: 0 additions & 4 deletions src/styles/mixins.scss
Original file line number Diff line number Diff line change
Expand Up @@ -129,10 +129,6 @@
padding: 0;
margin-right: 100px;
}

@media screen and (min-width: $media-l) {
max-width: 1800px;
}
}

@mixin sectionTitle {
Expand Down
2 changes: 1 addition & 1 deletion src/views/Contact.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
@include sectionTitle;

border-color: $color-contact-accent;
color: $color-contact-accent;
color: $color-contact-light;
font-size: 3rem;
margin: 0;
text-align: center;
Expand Down
1 change: 1 addition & 0 deletions src/views/Project.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
display: flex;
flex-direction: column;
gap: 50px;
max-width: 1400px;
width: 100%;

@media screen and (min-width: var.$media-m) {
Expand Down
1 change: 1 addition & 0 deletions src/views/Resume.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
'title'
'info'
'accordions';
max-width: 1200px;
padding: $menu-item-height $offset-right-s $menu-item-height $offset-left-s;

@media only screen and (min-width: $media-m) {
Expand Down

0 comments on commit 87acd2a

Please sign in to comment.