Skip to content

Commit

Permalink
fix: Fixed bugs in all of the Pages
Browse files Browse the repository at this point in the history
  • Loading branch information
Harsheel12 committed Aug 6, 2024
1 parent d6e22fb commit 3f6147c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion web/src/pages/About.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ export default function About() {
<div className="w-full h-auto bg-light-pink text-light-pink flex flex-col items-center">
<div className="w-full h-auto flex flex-wrap justify-center my-10">
{execs.map((exec, index) => (
<div key={index} className="w-full sm:w-1/2 md:w-1/3 lg:w-1/4 flex justify-center" data-testid="execCardContainer">
<div key={index} className="flex justify-center px-10" data-testid="execCardContainer">
<ExecCard exec={exec} />
</div>
))}
Expand Down
2 changes: 1 addition & 1 deletion web/src/pages/Event.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ export default function Event() {
<>
<Navbar />

<div className="max-w-screen h-auto bg-light-pink py-8 px-4 sm:px-8">
<div className="max-w-screen min-h-screen bg-light-pink py-8 px-4 sm:px-8">
<div className="w-full h-auto mb-10 flex flex-col">
<div className="flex justify-between items-center">
<h1
Expand Down
2 changes: 1 addition & 1 deletion web/src/pages/Sponsor.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ export default function Sponsor() {
<>
<Navbar />

<div className="max-w-screen h-auto bg-light-pink py-8 px-4 sm:px-8">
<div className="max-w-screen min-h-screen bg-light-pink py-8 px-4 sm:px-8">
<div className="w-full h-auto mb-10 flex flex-col">
<div className="flex justify-between items-center">
<h1
Expand Down

0 comments on commit 3f6147c

Please sign in to comment.