Skip to content

Commit

Permalink
Change width
Browse files Browse the repository at this point in the history
  • Loading branch information
miguelalb committed Sep 14, 2024
1 parent 67a7480 commit 01adcaa
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions css/screen.scss
Original file line number Diff line number Diff line change
Expand Up @@ -35,24 +35,26 @@

.sponsor-logo {
max-height: 150px; /* Adjust this value as needed */
width: auto; /* Maintain aspect ratio */
max-width: 300px; /* Maintain aspect ratio */
display: block;
margin: 0 auto 10px; /* Center the logos and add some space at the bottom */
}

/* Ensure contributor logos are smaller */
.contributor-logo {
max-height: 80px;
width: 50%; /* Adjust width to 50% of its parent */
max-width: 300px; /* Set a maximum width for consistency */
max-width: 200px; /* Set a maximum width for consistency */
height: auto; /* Maintain aspect ratio */
}
}
}

/* Contributing sponsor-specific styles */
.contributor-logo {
max-height: 80px;
width: 50%; /* Make the contributing sponsor logo smaller by reducing width */
max-width: 300px; /* Limit max width for consistency */
max-width: 200px; /* Limit max width for consistency */
height: auto; /* Ensure aspect ratio is maintained */
}

Expand Down

0 comments on commit 01adcaa

Please sign in to comment.