Skip to content

Commit

Permalink
The height discrepancy of the image on the medTech subpage has been f…
Browse files Browse the repository at this point in the history
…ixed.
  • Loading branch information
Fermatka committed Jun 26, 2024
1 parent 89d7fba commit 8434f9a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions algrtm/src/components/OpportunitiesSection.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,16 +11,16 @@ const OpportunitiesSection = () => {
</h2>
<div className="flex flex-col gap-4 w-full xl:px-[5.875rem]">
<div className="flex flex-col md:flex-row gap-[1.5rem] bg-neutralLight-neutral90 dark:bg-neutralDark-neutral90 px-[2.75rem] py-[2.75rem] md:py-[5.88rem] xl:py-[5.85rem] xl:px-[6.75rem] rounded-[2rem]">
<div className=" h5_small_bold md:h4SB lg:h4 text-neutralLight-neutral10 dark:text-neutralDark-neutral10 flex justify-start max-w-[25.1875rem] w-full">
<div className=" h5_small_bold md:h4SB lg:h4 text-neutralLight-neutral10 dark:text-neutralDark-neutral10 flex justify-start max-w-[25.1875rem] lg:min-w-[27.5rem] lg:h-[22.5rem] lg:w-[27.5rem]">
<Image
src="/med-image.png"
alt="Medical analysis image"
width={440}
height={360}
sizes="100vw"
className="object-cover w-full"
style={{
width: "100%",
height: "auto",
borderRadius: "10px",
}}
/>
</div>
Expand Down
4 changes: 2 additions & 2 deletions algrtm/src/components/shared/CollapsibleSectionsComponent.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ const CollapsibleSectionsComponent = ({ version }) => {
setSections(offerSectionTexts.slice(3, 6));
} else if (version === "version3") {
setSections(offerSectionTexts.slice(6, 13));
} else {
setSections(offerSectionTexts.slice(13));
} else if (version === "version4") {
setSections(offerSectionTexts.slice(13, 16));
}
}, [version]);

Expand Down

0 comments on commit 8434f9a

Please sign in to comment.