Skip to content

Commit

Permalink
Merge pull request #728 from lexicongovernance/main
Browse files Browse the repository at this point in the history
Fix back button and events layout (#727)
  • Loading branch information
diegoalzate authored Aug 2, 2024
2 parents 2f867a7 + 913a125 commit f958775
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions packages/berlin/src/components/tabs/TabsHeader.styled.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ export const Tab = styled(Body)`
text-transform: capitalize;
&.active {
font-size: 1.25rem;
font-weight: 600;
text-decoration: underline;
}
Expand Down
4 changes: 2 additions & 2 deletions packages/berlin/src/pages/Event.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -56,9 +56,9 @@ function Event() {
<>
<Onboarding steps={eventSteps} type="event" />
<FlexColumn $gap="2rem" className="event">
<section className="grid grid-cols-3 gap-x-4">
<section className="grid w-full grid-cols-3 gap-x-4">
<div className={`${event?.imageUrl ? 'col-span-2' : 'col-span-3'} flex flex-col gap-4`}>
<BackButton />
<BackButton fallbackRoute="/events" />
<Subtitle>{event?.name}</Subtitle>
{event?.description && (
<div>
Expand Down

0 comments on commit f958775

Please sign in to comment.