Skip to content

[FIX] : made all the community partner logo the same height to maintain aspect ratio and uniformity #318

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: temp
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions src/components/Community/Community.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,34 +17,44 @@ const Community = () => {
className={`${styles.community__chapter} ${styles.outline}`}
src="assets/images/communities/pydelhi.png"
alt="Pydelhi"
width={"auto"}
height={"200"}
Comment on lines +20 to +21
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

height and width should follow the aspect ratio of the image

/>
</a>
<a href="https://rustdelhi.in" target="_blank" rel="no noreferrer">
<img
className={styles.community__chapter}
src="assets/images/communities/rustdelhi.png"
alt="RustDelhi"
width={"auto"}
height={"200"}
Comment on lines +29 to +30
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

same

/>
</a>
<a href="https://linuxdelhi.org/" target="_blank" rel="no noreferrer">
<img
className={`${styles.community__chapter} ${styles.outline}`}
src="assets/images/communities/ilugd.png"
alt="India Linux User Group"
width={"auto"}
height={"200"}
/>
</a>
<a href="https://fossunited.org/" target="_blank" rel="no noreferrer">
<img
className={styles.community__chapter}
src="assets/images/communities/foss-united.png"
alt="Foss United Foundation"
width={"auto"}
height={"200"}
Comment on lines +47 to +48
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

same

/>
</a>
<a href="https://2024.ubucon.asia/" target="_blank" rel="no noreferrer">
<img
className={styles.community__chapter}
src="/assets/images/communities/ubucon.png"
alt="Ubucon Asia"
width={"auto"}
height={"200"}
Comment on lines +56 to +57
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

same

/>
</a>
</div>
Expand Down