Skip to content

Commit

Permalink
made logo responsive
Browse files Browse the repository at this point in the history
  • Loading branch information
GAGGZ1 committed Jun 7, 2024
1 parent b196b7d commit 64a8468
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions style.css
Original file line number Diff line number Diff line change
Expand Up @@ -305,10 +305,13 @@ ul {
}

.company-logo img {
width: 200px;
height: 50px;
width: 100%; /* Use 100% width to make the image responsive */
height: auto; /* Maintain the aspect ratio */
max-width: 200px; /* Ensure the image doesn't grow larger than its intended size */
max-height: 50px; /* Ensure the image doesn't grow larger than its intended size */
}


.nav-links {
flex-basis: 730px;
}
Expand Down

0 comments on commit 64a8468

Please sign in to comment.