fix(#2404): fixed check for mobile device

keep-around/dc64ca6d7de7c5a88dabf4a9c49146f29d82e092
Rakov Roman 4 years ago
parent 49421ef270
commit dc64ca6d7d
  1. 2
      Makefile
  2. 14
      src/features/BuyMatchPopup/components/PackagesList/styled.tsx

@ -130,7 +130,7 @@ b-stage: build-b
rsync -zavP --delete-before build/ -e 'ssh -p 666' ott-staging@staging.instat.tv:/usr/local/www/ott-staging/b-wwwroot/
c-stage: build-c
rsync -zavP --delete-before build/ -e 'ssh -p 666' ott-staging@10.0.3.8:/usr/local/www/ott-staging/c-wwwroot/
rsync -zavP --delete-before build/ -e 'ssh -p 666' ott-staging@staging.instat.tv:/usr/local/www/ott-staging/c-wwwroot/
d-stage: build-d
rsync -zavP --delete-before build/ -e 'ssh -p 666' ott-staging@staging.instat.tv:/usr/local/www/ott-staging/d-wwwroot/

@ -9,8 +9,6 @@ import {
Period,
} from 'features/Price/styled'
import { devices } from '../../../../config'
export const List = styled.ul`
width: 100%;
height: 460px;
@ -217,11 +215,13 @@ export const ScAutoRenewal = styled(PriceDetails)`
margin: 0;
color: ${({ theme: { colors } }) => colors.text70};
@media ${devices.mobile} {
line-height: normal;
font-size: 10px;
text-align: center;
}
${isMobileDevice
? css`
line-height: normal;
font-size: 10px;
text-align: center;
`
: ''};
`
export const ScPriceContainer = styled.div`

Loading…
Cancel
Save