Fix "Results boosted by LBC" wrapping unnecessarily
This commit is contained in:
parent
d15a0308b2
commit
b99c83a13f
2 changed files with 9 additions and 1 deletions
|
@ -183,7 +183,7 @@ function DiscoverPage(props: Props) {
|
||||||
}, [isAuthenticated]);
|
}, [isAuthenticated]);
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Page noFooter fullWidthPage={tileLayout}>
|
<Page noFooter fullWidthPage={tileLayout} className="main__discover">
|
||||||
<Ads type="homepage" />
|
<Ads type="homepage" />
|
||||||
<ClaimListDiscover
|
<ClaimListDiscover
|
||||||
pins={getPins(dynamicRouteProps)}
|
pins={getPins(dynamicRouteProps)}
|
||||||
|
|
|
@ -1134,6 +1134,14 @@ body {
|
||||||
max-width: 32rem;
|
max-width: 32rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.main__discover {
|
||||||
|
.section__actions--no-margin {
|
||||||
|
@media (max-width: $breakpoint-small) {
|
||||||
|
width: unset; // It was being set to '100%' globally. Not sure why.
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
.main-wrapper--scrollbar {
|
.main-wrapper--scrollbar {
|
||||||
// The W3C future standard; currently supported by Firefox only.
|
// The W3C future standard; currently supported by Firefox only.
|
||||||
// It'll hopefully auto fallback to this when 'webkit-scrollbar' below is deprecated in the future.
|
// It'll hopefully auto fallback to this when 'webkit-scrollbar' below is deprecated in the future.
|
||||||
|
|
Loading…
Add table
Reference in a new issue