fix for menu z-index

This commit is contained in:
David Sun
2019-04-05 15:01:07 -07:00
parent 02f7064953
commit ded849fd6d
2 changed files with 4 additions and 0 deletions

View File

@@ -340,6 +340,8 @@ const ExploreHero = (props: ExploreHeroProps) => {
const ExploreToolBarWrapper = styled.div`
display: flex;
justify-content: space-between;
z-index: 1;
position: relative;
${addFadeInAnimation('0.5s', '0.15s')}
@media (max-width: 36rem) {
display: block;

View File

@@ -124,6 +124,8 @@ const ExploreGridList = styled.div<ExploreGridListProps>`
grid-template-columns: repeat(${ExploreTileGridWidth.ThreeColumn}, 1fr);
grid-column-gap: 1.5rem;
grid-row-gap: 1.5rem;
z-index: 0;
position: relative;
${addFadeInAnimation('0.5s', '0.25s')}
& > * {
align-self: stretch;