This repository was archived by the owner on Nov 8, 2022. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +11
-11
lines changed Expand file tree Collapse file tree 2 files changed +11
-11
lines changed Original file line number Diff line number Diff line change @@ -17,8 +17,6 @@ export const BaseBanner = styled.nav`
1717
1818export const BaseBannerContent = styled . div `
1919 ${ cs . flex ( ) } ;
20- margin-left: 8%;
21- margin-right: 8%;
2220 ${ cs . media . mobile `
2321 margin-left: 4%;
2422 margin-right: 3%;
@@ -29,7 +27,7 @@ export const BaseTabber = styled.div`
2927 ${ cs . flex ( ) } ;
3028 position: absolute;
3129 bottom: -16px;
32- width: 80vw ;
30+ width: 100% ;
3331 ${ cs . media . mobile `width: 100%` } ;
3432 overflow-y: scroll;
3533`
Original file line number Diff line number Diff line change @@ -8,25 +8,27 @@ export const Wrapper = styled(BaseBanner)`
88`
99export const BaseBannerContent = styled . div `
1010 ${ cs . flex ( ) } ;
11- margin-left: 8%;
12- margin-right: 8%;
1311`
1412export const BannerContainer = styled ( BaseBanner ) ``
1513
1614export const TabberWrapper = styled . div `
1715 ${ cs . flex ( ) } ;
18- width: 80vw;
19- margin-left: 250px;
16+ max-width: ${ cs . MAX_CONTENT_WIDTH } ;
2017 margin-top: 4px;
18+ width: 100%;
19+ padding: 0 15vw;
2120
22- @media (min-width: 1600px) {
23- margin-left: 270px ;
24- }
21+ ${ cs . media . desktop `
22+ padding: 0 18vw ;
23+ ` } ;
2524
2625 ${ cs . media . mobile `
2726 width: 55vw;
2827 overflow: scroll;
2928 margin-left: 45vw;
3029 ` } ;
3130`
32- export const BannerContentWrapper = styled ( BaseBannerContent ) ``
31+ export const BannerContentWrapper = styled ( BaseBannerContent ) `
32+ width: 100%;
33+ ${ cs . flex ( 'justify-center' ) } ;
34+ `
You can’t perform that action at this time.
0 commit comments