Skip to content

Commit

Permalink
add: core skills section fix
Browse files Browse the repository at this point in the history
  • Loading branch information
jakobgabriel committed Jan 3, 2025
1 parent 1a0cd4b commit 4df43c3
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion _data/strings.yml
Original file line number Diff line number Diff line change
Expand Up @@ -165,4 +165,4 @@ resume:
references: icon-quotes-right
languages: icon-bubbles
skills: icon-wrench
interests: icon-heart
interests: icon-heart
12 changes: 6 additions & 6 deletions _includes/pro/resume/skills.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<section class="npb">
<h2 id="core-skills" class="h3 hr-bottom">
{{ strings.resume.coreSkills | default:"Core Skills" }}
<span class="symbol {{ icons.coreSkills | default:'icon-star' }}"></span>
<span class="symbol {{ icons.coreSkills | default:'icon-wrench' }}"></span>
</h2>
<div class="skills-container">
{% for coreSkill in resume.coreSkills %}
Expand Down Expand Up @@ -77,18 +77,18 @@ <h2 id="skills" class="h3 hr-bottom">
.skills-container {
display: flex;
flex-wrap: wrap;
gap: 10px;
gap: 5px; /* Reduced gap for slimmer appearance */
}

.skill-pill {
background-color: #6c6f6d; /* Custom color */
color: white;
padding: 5px 15px;
border-radius: 16px;
font-size: 14px;
padding: 3px 10px; /* Reduced padding for slimmer appearance */
border-radius: 12px; /* Smaller radius for slimmer look */
font-size: 12px; /* Reduced font size */
font-weight: 500;
text-transform: capitalize;
box-shadow: 0 2px 4px #0000001a;
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); /* Adjusted shadow */
cursor: default;
user-select: none;
}
Expand Down

0 comments on commit 4df43c3

Please sign in to comment.