Skip to content

Commit

Permalink
fix: hide legend until large screen size
Browse files Browse the repository at this point in the history
  • Loading branch information
aeschi committed May 2, 2024
1 parent 7457cf5 commit af06dbb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/legend/legend.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export const Legend: React.FC = () => {
className={`
absolute left-[10px] bottom-[175px] md:bottom-[306px] lg:bottom-[242px] lg:left-[90px]
${isLegendVisibleMobile ? "block" : "hidden"}
${isLegendVisibleDesktop ? "sm:block" : "sm:hidden"}
${isLegendVisibleDesktop ? "lg:block" : "lg:hidden"}
`}
>
<LegendButton />
Expand Down

0 comments on commit af06dbb

Please sign in to comment.