Skip to content

Commit

Permalink
fix: Exhibitor details content overflow
Browse files Browse the repository at this point in the history
  • Loading branch information
hampfh committed Nov 17, 2024
1 parent 94fa1e0 commit d656323
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/app/student/_components/ExhibitorDetails.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export default function ExhibitorDetails({
const hasIndustries = exhibitor.industries?.length > 0
const hasEmployments = exhibitor.employments?.length > 0
return (
<div className="@container">
<div className="pb-5 @container">
<div className="flex flex-col-reverse items-center gap-6 @sm:h-[100px] @sm:flex-row">
{(exhibitor.logo_squared || exhibitor.logo_freesize) && (
<Image
Expand Down
2 changes: 1 addition & 1 deletion src/app/student/map/_components/Sidebar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ export default function Sidebar({
}
return (
<SidebarContainer open={open} setOpen={setOpen} smallScreen={smallScreen}>
<div className="p-2">
<div className="h-[calc(80vh-28px)] p-2">
<Button variant="ghost" onClick={() => setActiveBoothId(null)}>
<ArrowLeft size={30} />
</Button>
Expand Down

0 comments on commit d656323

Please sign in to comment.