Prevent overflow on instant page

This commit is contained in:
Fred Carlsen
2018-12-18 14:03:40 +01:00
committed by Steve Klebanoff
parent 45d8b522f4
commit ae27695d25

View File

@@ -204,6 +204,12 @@ const MarqueeWrap = styled.div`
height: 514px;
padding-bottom: 60px;
@media (max-width: 768px) {
width: calc(100% + 60px);
margin-left: -30px;
overflow: hidden;
}
> div {
height: auto;
display: flex;