diff --git a/src/pages/about-us/_AboutUsBanner.tsx b/src/pages/about-us/_AboutUsBanner.tsx index 01b38dd4c14..1eb65f4bbd2 100644 --- a/src/pages/about-us/_AboutUsBanner.tsx +++ b/src/pages/about-us/_AboutUsBanner.tsx @@ -56,6 +56,11 @@ const PictureFlex = styled(Flex)` const StyledHeader = styled(Header)` color: var(--color-white); margin-bottom: 16px; + line-height: 40px; + + @media ${device.tablet} { + line-height: 34px; + } ` const Styledtext = styled(Text)` color: var(--color-white); @@ -67,7 +72,7 @@ const AboutUsBanner = () => { - + {localize('We have a huge mission, an incredible team, and rapid growth.')} diff --git a/src/pages/about-us/_data.ts b/src/pages/about-us/_data.ts index 7a6b310f480..f098d36c9b0 100644 --- a/src/pages/about-us/_data.ts +++ b/src/pages/about-us/_data.ts @@ -70,7 +70,7 @@ export const our_principles: PrincipleType[] = [ { title: localize('Be fair'), text: localize( - 'We treat all customers equitably, handle complaints with integrity, and offer competitive prices on all our products with no hidden costs and no artificial barriers on customer withdrawals.', + 'We treat all customers equitably, handle complaints with integrity, and offer competitive prices with no hidden costs and no artificial barriers on customer withdrawals.', ), color: 'rgba(255, 195, 89, 0.25)', }, diff --git a/src/pages/about-us/carousel/_Carousel.tsx b/src/pages/about-us/carousel/_Carousel.tsx index 242dec010af..3438acc2eb5 100644 --- a/src/pages/about-us/carousel/_Carousel.tsx +++ b/src/pages/about-us/carousel/_Carousel.tsx @@ -43,6 +43,11 @@ type CarouselViewportType = { const CarouselViewport = styled.div` overflow: hidden; width: 100%; + + @media(min-width: 3107px) { + display: flex; + justify-content: center; + } } ` const CarouselContainer = styled.div`