Skip to content

Commit

Permalink
fixing boxes in my skill
Browse files Browse the repository at this point in the history
- boxes were looking inconsistent
  • Loading branch information
typhonshambo committed Oct 28, 2023
1 parent b0d7b49 commit b04fbbf
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -225,6 +225,7 @@ nav a:hover {
}

/* Style the skills and achievements section */

.skills-section {
background: #f8f8f8;
padding: 100px 0;
Expand All @@ -239,7 +240,8 @@ nav a:hover {

.skills-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); /* Adjust width */
grid-template-rows: repeat(3, 1fr); /* Adjust height */
grid-gap: 20px;
justify-items: center;
}
Expand All @@ -265,7 +267,6 @@ nav a:hover {
height: auto;
}


/* Style the contact section */
.contact-section {
background-image: url('./images/intro-1.jpg');
Expand Down

0 comments on commit b04fbbf

Please sign in to comment.