diff --git a/Makefile b/Makefile index 2fe29737..5820759c 100644 --- a/Makefile +++ b/Makefile @@ -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/ diff --git a/src/features/BuyMatchPopup/components/PackagesList/styled.tsx b/src/features/BuyMatchPopup/components/PackagesList/styled.tsx index f94c2d92..87613178 100644 --- a/src/features/BuyMatchPopup/components/PackagesList/styled.tsx +++ b/src/features/BuyMatchPopup/components/PackagesList/styled.tsx @@ -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`