Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
asturur committed Dec 25, 2024
1 parent c9859d0 commit 0975803
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/Companies/Companies.astro
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ const logos = [
<div id="logos">
{logos.map((logo) => <a href={logo.link} target="_blank">
<div class="imageContainer">
<img src={logo.logo} alt="Company logo">
<img src={logo.logo} alt="Company logo" width="180px" height="180px">
</div>
<p>{logo.description}</p>
</a>)}
Expand Down
2 changes: 1 addition & 1 deletion src/components/ContributorsList/ContributorsList.astro
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import ContributorCard from '../ContributorCard/ContributorCard.astro';
{list.map(({ login, avatar_url, html_url }) => (
<ContributorCard
name={login}
picUrl={avatar_url}
picUrl={avatar_url.replace('https://avatars.githubusercontent.com/u/', 'https://avatars-githubusercontent.webp.se/u/')}
url={html_url}
/>
))}
Expand Down

0 comments on commit 0975803

Please sign in to comment.