Skip to content

Commit

Permalink
fix: ui changes
Browse files Browse the repository at this point in the history
  • Loading branch information
tamalCodes committed Jun 12, 2024
1 parent 69fdff6 commit 5985a5b
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,11 @@ const SingleSponsors = ({ sponsor, type }) => {

return (
<a href={sponsor?.link} target="_blank" rel="noopener noreferrer">
<div className={`single__sponsor ${type}`}>
<div
className={`single__sponsor ${type} ${
sponsor?.name === "GDG Cloud Kolkata" && "gdg"
}`}
>
<img
src={sponsor?.img}
alt={sponsor?.name}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,14 @@
}
}

.gdg > img {
min-width: 230px !important;

@media screen and (max-width: 576px) {
min-width: 190px !important;
}
}

.gold {
border: 1px solid #efc230;
transition: all 0.3s ease;
Expand Down

0 comments on commit 5985a5b

Please sign in to comment.