Skip to content

Commit

Permalink
fix some google earth bug
Browse files Browse the repository at this point in the history
  • Loading branch information
Eric Thieme-Garmann committed Sep 5, 2024
1 parent e89081b commit d9c253e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/Viewer/Slides.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ export function Slides({ className, slug, page, story }: Props) {
</div>
</div>
)}
<div className="">
<div>
{story?.steps.sort(
(a: StoryStep, b: StoryStep) => a.position - b.position,
) &&
Expand Down
2 changes: 1 addition & 1 deletion src/components/Viewer/ViewerWrapper.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ export function ViewerWrapper({ filter, slug, story, tags }: Props) {
)}
</div>

<div className="overflow-y-auto overflow-x-hidden lg:h-full">
<div className="max-w-full overflow-y-auto overflow-x-hidden lg:h-full">
<div className={cx(showSlides ? 'flex' : 'hidden')}>
<Slides page={slug[1]} slug={slug[0]} story={story}></Slides>
</div>
Expand Down

0 comments on commit d9c253e

Please sign in to comment.