File tree Expand file tree Collapse file tree 4 files changed +11
-7
lines changed Expand file tree Collapse file tree 4 files changed +11
-7
lines changed Original file line number Diff line number Diff line change 1313
1414.App  {
1515 display :  flex;
16-  height :  85 vh ; 
17-  margin :  50 px   auto;
16+  /*  height: 500px; */ 
17+  margin :  10 px   auto;
1818 width :  50vw  ;
1919 justify-content :  space-around;
2020 align-items :  center;
2626.header  {
2727 text-align :  center;
2828 font-size :  64px  ;
29+  margin-bottom :  150px  ;
2930}
Original file line number Diff line number Diff line change 11.array-container  {
22 display :  flex;
33 flex-wrap :  wrap;
4-  width :  100 %  ;
4+  width :  120 %  ;
55 justify-content :  space-evenly;
6+  margin-bottom :  50px  ;
67}
Original file line number Diff line number Diff line change 11import  React  from  'react' ; 
22import  './ArrayItem.css' ; 
33const  ArrayItem  =  ( {  item,  result } )  =>  { 
4-  let  className  =  '' ; 
4+  let  className  =  'array-item ' ; 
55 if  ( item  ==  result )  { 
6-  className  =  'result' ; 
6+  className  + =  '  result' ; 
77 } 
88 return  ( 
9-  < div  className = 'array-item' > 
10-  < p   className = { className } > { item } </ p > 
9+  < div  className = { className } > 
10+  < p > { item } </ p > 
1111 </ div > 
1212 ) ; 
1313} ; 
Original file line number Diff line number Diff line change 1111 padding :  25px  ;
1212 border :  none;
1313 min-width :  250px  ;
14+  margin-bottom :  100px  ;
1415 position :  relative;
1516}
1617# search-button  {
18+  margin-bottom :  100px  ;
1719 text-decoration :  none;
1820 cursor :  pointer;
1921 outline :  none;
                                 You can’t perform that action at this time. 
               
                  
0 commit comments