Skip to content

Commit

Permalink
refactor: 💄 only hide footer on desktop (where it doesn't fit)
Browse files Browse the repository at this point in the history
  • Loading branch information
kagiura authored and zwliew committed Nov 17, 2024
1 parent be0b2a8 commit 2df462d
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -67,3 +67,11 @@
right: 8px;
z-index: 99999999;
}

@media (min-width: 768px) {
:root {
footer {
display: none;
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,6 @@ const MobilityContainer = () => {
{type === 'stop' && <StopDetails stop={slug} setSelectedService={setSelectedService} />}
</div>
</div>
<NoFooter />
</>
);
};
Expand Down

0 comments on commit 2df462d

Please sign in to comment.