Skip to content

Commit 2df462d

Browse files
kagiurazwliew
authored andcommitted
refactor: 💄 only hide footer on desktop (where it doesn't fit)
1 parent be0b2a8 commit 2df462d

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

website/src/views/mobility/MobilityContainer/MobilityContainer.scss

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,3 +67,11 @@
6767
right: 8px;
6868
z-index: 99999999;
6969
}
70+
71+
@media (min-width: 768px) {
72+
:root {
73+
footer {
74+
display: none;
75+
}
76+
}
77+
}

website/src/views/mobility/MobilityContainer/MobilityContainer.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,6 @@ const MobilityContainer = () => {
141141
{type === 'stop' && <StopDetails stop={slug} setSelectedService={setSelectedService} />}
142142
</div>
143143
</div>
144-
<NoFooter />
145144
</>
146145
);
147146
};

0 commit comments

Comments
 (0)