@@ -59,6 +59,12 @@ const Footer = React.forwardRef(function Footer(props, ref) {
5959 fontSize : "16px" ,
6060 lineHeight : "24px" ,
6161 fontWeight : 600 ,
62+ textAlign : "center" ,
63+ width : "100%" ,
64+ [ theme . breakpoints . up ( "md" ) ] : {
65+ cursor : "pointer" ,
66+ width : "unset" ,
67+ } ,
6268 } ,
6369 "& #mc_embed_signup input[type=submit]:hover" : {
6470 cursor : "pointer" ,
@@ -71,23 +77,15 @@ const Footer = React.forwardRef(function Footer(props, ref) {
7177 backgroundColor : palette . common . black ,
7278 color : palette . text . secondary ,
7379 px : 0 ,
74- py : { xs : 10 , md : 13.75 , lg : 12.5 } ,
80+ py : 8 ,
7581 } ) }
7682 component = "footer"
7783 ref = { ref }
7884 >
7985 < Section sx = { { px : { xs : 2.5 , sm : 0 } } } >
8086 { /* Increase number of columns to getter columns size */ }
8187 < Grid container columns = { 24 } justifyContent = "space-between" >
82- < Grid
83- item
84- xs = { 24 }
85- md = { 15 }
86- lg = { 16 }
87- sx = { {
88- order : { xs : 1 , md : 0 } ,
89- } }
90- >
88+ < Grid item xs = { 24 } md = { 15 } lg = { 16 } >
9189 < Grid container justifyContent = "space-between" >
9290 < Grid
9391 item
@@ -100,11 +98,7 @@ const Footer = React.forwardRef(function Footer(props, ref) {
10098 } }
10199 >
102100 < Grid item >
103- < FooterDescription
104- description = { description }
105- logo = { null }
106- sx = { { mt : { xs : 10 , md : 0 } } }
107- />
101+ < FooterDescription description = { description } logo = { null } />
108102 </ Grid >
109103 < Grid item >
110104 < StayInTouch
@@ -115,9 +109,15 @@ const Footer = React.forwardRef(function Footer(props, ref) {
115109 textTransform : "uppercase" ,
116110 fontSize : "10px" ,
117111 fontWeight : 700 ,
112+ mb : 0 ,
113+ mr : 4 ,
118114 } ,
119115 } }
120- sx = { { mt : "52px" } }
116+ sx = { {
117+ mt : "52px" ,
118+ justifyContent : { xs : "center" , md : "flex-start" } ,
119+ } }
120+ direction = "row"
121121 />
122122 </ Grid >
123123 </ Grid >
@@ -138,6 +138,8 @@ const Footer = React.forwardRef(function Footer(props, ref) {
138138 lineHeight : "28px" ,
139139 letterSpacing : "-2%" ,
140140 fontFamily : "Barlow" ,
141+ textAlign : { xs : "center" , md : "left" } ,
142+ mt : { xs : 8 , md : 0 } ,
141143 } }
142144 { ...newsletter }
143145 />
0 commit comments