Skip to content
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

fixes: Images are sized too large on smaller windows/screens #1 #2

Merged
merged 2 commits into from
Sep 22, 2024
Merged
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
12 changes: 6 additions & 6 deletions golden-website/app/page.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,12 +35,12 @@ export default function Home() {
<br />

{/* code credit @brianna: https://github.com/hackclub/halo/blob/main/halo-website/src/pages/index.astro */}
<div className="flex sm:flex-column md:flex-column lg:flex-row gap-5 pl-16">
<img className="rounded-lg sm:max-w-96 lg:w-1/6 object-cover" src="https://cloud-cci0049xc-hack-club-bot.vercel.app/00.jpg" alt="Image at Assemble" />
<img className="rounded-lg sm:max-w-96 lg:w-1/6 object-cover" src="https://cloud-cci0049xc-hack-club-bot.vercel.app/1alpine.jpeg" alt="Image at Alpine Hackathon Workshop" />
<img className="rounded-lg sm:max-w-96 lg:w-1/6 object-cover" src="https://cloud-cci0049xc-hack-club-bot.vercel.app/5horizon.png" alt="Image at Horizon Hackathon" />
<img className="rounded-lg sm:max-w-96 lg:w-1/6 object-cover" src="https://cloud-cci0049xc-hack-club-bot.vercel.app/2epoch.jpg" alt="Image 3" />
<img className="rounded-lg sm:max-w-96 lg:w-1/6 object-cover" src="https://cloud-cci0049xc-hack-club-bot.vercel.app/6spark.jpg" alt="Image 5" />
<div className="flex flex-col sm:flex-row sm:flex-wrap justify-center items-center gap-5 p-4">
<img className="rounded-lg w-full sm:w-1/2 md:w-1/3 lg:w-1/6 object-cover h-40 sm:h-48 md:h-52 lg:h-60" src="https://cloud-cci0049xc-hack-club-bot.vercel.app/00.jpg" alt="Image at Assemble" />
<img className="rounded-lg w-full sm:w-1/2 md:w-1/3 lg:w-1/6 object-cover h-40 sm:h-48 md:h-52 lg:h-60" src="https://cloud-cci0049xc-hack-club-bot.vercel.app/1alpine.jpeg" alt="Image at Alpine Hackathon Workshop" />
<img className="rounded-lg w-full sm:w-1/2 md:w-1/3 lg:w-1/6 object-cover h-40 sm:h-48 md:h-52 lg:h-60" src="https://cloud-cci0049xc-hack-club-bot.vercel.app/5horizon.png" alt="Image at Horizon Hackathon" />
<img className="rounded-lg w-full sm:w-1/2 md:w-1/3 lg:w-1/6 object-cover h-40 sm:h-48 md:h-52 lg:h-60" src="https://cloud-cci0049xc-hack-club-bot.vercel.app/2epoch.jpg" alt="Image 3" />
<img className="rounded-lg w-full sm:w-1/2 md:w-1/3 lg:w-1/6 object-cover h-40 sm:h-48 md:h-52 lg:h-60" src="https://cloud-cci0049xc-hack-club-bot.vercel.app/6spark.jpg" alt="Image 5" />
</div>

<br />
Expand Down