fix(#2818): fix z-index for popup

keep-around/99001d5964a4727568711990575a9f282fe3f67e
Andrei Dekterev 3 years ago
parent 1d8c776fdc
commit 02beeb937a
  1. 5
      src/features/MatchPage/components/FavouriteTeam/styled.tsx
  2. 2
      src/features/MatchSidePlaylists/components/TabVideo/index.tsx

@ -8,13 +8,13 @@ import { customScrollbar, ButtonSolid } from 'features/Common'
import { HeaderTitle } from 'features/PreferencesPopup/styled' import { HeaderTitle } from 'features/PreferencesPopup/styled'
export const ScModalContainer = styled(BaseModal)` export const ScModalContainer = styled(BaseModal)`
z-index: 100;
${ModalWindow} { ${ModalWindow} {
width: 1446px; width: 1446px;
height: 670px; height: 670px;
padding: 0; padding: 0;
background: #333333; background: #333333;
border-radius: 5px; border-radius: 5px;
z-index: 100;
${customScrollbar} ${customScrollbar}
${isMobileDevice ${isMobileDevice
@ -67,8 +67,7 @@ export const ScGroups = styled.div`
${isMobileDevice ${isMobileDevice
? css` ? css`
margin: 0; margin: 20px 0 0 0;
margin-top: 20px;
width: auto; width: auto;
overflow-y: auto; overflow-y: auto;
` `

@ -72,7 +72,7 @@ export const TabVideo = ({
/> />
<MatchesWrapper> <MatchesWrapper>
{ {
map(sortBy(matches, ['!live', 'date']), (match) => ( map(sortBy(matches, ({ live }) => !live), (match) => (
<MatchCard <MatchCard
key={match.id} key={match.id}
match={match} match={match}

Loading…
Cancel
Save