@@ -7,7 +7,7 @@ export const useStyles = () => {
77 return {
88 theme,
99 container : css `
10- margin : ${ theme . spacing ( 0 , 10 ) } ;
10+ margin : ${ theme . spacing ( 0 , 8 ) } ;
1111
1212 ${ theme . breakpoints . down ( 'md' ) } {
1313 margin : ${ theme . spacing ( - 2 , 4 , 0 ) } ;
@@ -23,50 +23,79 @@ export const useStyles = () => {
2323 ${ theme . breakpoints . down ( 'md' ) } {
2424 grid-template-columns : 1fr 1fr ;
2525 row-gap : ${ theme . spacing ( 2 ) } ;
26- column-gap : ${ theme . spacing ( 0 ) } ;
26+ column-gap : ${ theme . spacing ( 3 ) } ;
2727 margin : ${ theme . spacing ( 4 ) } ;
2828 }
2929 ` ,
30+ logoContainer : css `
31+ display : flex;
32+ justify-content : center;
33+ align-items : center;
34+ margin-bottom : ${ theme . spacing ( 3 ) } ;
35+ width : 100% ;
36+ max-width : 100% ;
37+ overflow : hidden;
38+ ` ,
39+
3040 getListItem : ( { isActionable } : { isActionable : boolean } ) => css `
3141 box-shadow : none;
32- border : 0 ;
33- border-radius : ${ theme . shape . borderRadius . small } px ;
34- padding : ${ theme . spacing ( 2 ) } ;
42+ border : 1 px solid rgba ( 255 , 255 , 255 , 0.3 ) ;
43+ border-radius : 16 px ;
44+ padding : ${ theme . spacing ( 1 ) } ;
3545 text-align : center;
36- width : 200 px ;
37- height : 135 px ;
38- background-color : # eeeff0 ;
39- color : # 343a41 ;
46+ width : 100 % ;
47+ height : 125 px ;
48+ background-color : rgba ( 255 , 255 , 255 , 0.1 ) ;
49+ color : white ;
4050 svg {
4151 margin-top : 5px ;
42- fill : # 343a41 ;
52+ fill : white ;
4353 }
4454 margin : 0 auto;
4555
4656 ${ theme . breakpoints . down ( 'md' ) } {
47- width : 150 px ;
57+ width : 100 % ;
4858 height : 125px ;
4959 }
5060
5161 ${ theme . breakpoints . down ( 'sm' ) } {
52- width : 125 px ;
62+ width : 100 % ;
5363 height : 120px ;
5464 }
5565
5666 ${ isActionable &&
5767 css `
5868 cursor : pointer;
69+ transition : all 0.3s ease;
5970
6071 : hover {
61- background : linear-gradient (123.08deg , rgba (29 , 185 , 166 , 0.2 ) -33.26% , # 1db9a6 88.39% );
72+ background : linear-gradient (
73+ 123.08deg ,
74+ rgba (29 , 185 , 166 , 0.1 ) -33.26% ,
75+ rgba (29 , 185 , 166 , 0.3 ) 88.39%
76+ );
6277 color : white;
78+ transform : translateY (-2px );
6379
6480 svg {
6581 fill : white;
6682 }
6783 }
6884 ` }
6985 ` ,
86+ logo : css `
87+ display : block;
88+ height : 33px ;
89+ margin : ${ theme . spacing ( 0 , 'auto' , 4 ) } ;
90+ ` ,
91+ logoClosed : css `
92+ display : none;
93+ margin : ${ theme . spacing ( 0 , 'auto' , 4 ) } ;
94+ ${ theme . breakpoints . down ( 'lg' ) } {
95+ display : block;
96+ height : 36px ;
97+ }
98+ ` ,
7099 walletLogo : css `
71100 width : ${ theme . spacing ( 12 ) } ;
72101 height : ${ theme . spacing ( 12 ) } ;
0 commit comments