From 008ca4d99dd913cb07353802f8df7718599a53a7 Mon Sep 17 00:00:00 2001 From: Andrei Dekterev Date: Wed, 18 May 2022 15:30:54 +0700 Subject: [PATCH] fix(#2429): add overflow for mobile version --- Makefile | 6 +++--- .../UserAccount/components/PagePaymentsHistory/styled.tsx | 3 ++- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index 1017f2a8..0c6ba6f9 100644 --- a/Makefile +++ b/Makefile @@ -170,13 +170,13 @@ f-stage: build-f rsync -zavP --delete-before build/ -e 'ssh -p 666' ott-staging@10.0.3.8:/usr/local/www/ott-staging/f-wwwroot/ g-stage: build-f - rsync -zavP --delete-before build/ -e 'ssh -p 666' ott-staging@10.0.3.8:/usr/local/www/ott-staging/f-wwwroot/ + rsync -zavP --delete-before build/ -e 'ssh -p 666' ott-staging@10.0.3.8:/usr/local/www/ott-staging/g-wwwroot/ h-stage: build-f - rsync -zavP --delete-before build/ -e 'ssh -p 666' ott-staging@10.0.3.8:/usr/local/www/ott-staging/f-wwwroot/ + rsync -zavP --delete-before build/ -e 'ssh -p 666' ott-staging@10.0.3.8:/usr/local/www/ott-staging/h-wwwroot/ i-stage: build-f - rsync -zavP --delete-before build/ -e 'ssh -p 666' ott-staging@10.0.3.8:/usr/local/www/ott-staging/f-wwwroot/ + rsync -zavP --delete-before build/ -e 'ssh -p 666' ott-staging@10.0.3.8:/usr/local/www/ott-staging/i-wwwroot/ test: npm test diff --git a/src/features/UserAccount/components/PagePaymentsHistory/styled.tsx b/src/features/UserAccount/components/PagePaymentsHistory/styled.tsx index 4c2432b7..40b9f6d3 100644 --- a/src/features/UserAccount/components/PagePaymentsHistory/styled.tsx +++ b/src/features/UserAccount/components/PagePaymentsHistory/styled.tsx @@ -12,6 +12,8 @@ export const Wrapper = styled.div` } ` : ''} + + overflow-y: auto; ` export const Table = styled.table`` @@ -19,7 +21,6 @@ export const Table = styled.table`` export const THead = styled.thead`` export const Th = styled.th` - width: 250px; padding: 0 20px; padding-bottom: 25px; font-weight: 500;