File tree 3 files changed +7554
-7531
lines changed
3 files changed +7554
-7531
lines changed Original file line number Diff line number Diff line change @@ -17,8 +17,11 @@ const RestruarantCards = (props) => {
17
17
aggregatedDiscountInfo,
18
18
} = resData ;
19
19
return (
20
- < div className = "overflow-hidden shadow-md md:shadow-none py-4 px-4 md:py-2 hover:shadow-xl rounded flex flex-col gap-1 text-[0.7rem] text-[#535665] " >
21
- < Link to = { "/restaurants/" + id } >
20
+ < Link
21
+ className = "shadow-md md:shadow-none hover:shadow-xl ease-in duration-200 rounded"
22
+ to = { "/restaurants/" + id }
23
+ >
24
+ < div className = "overflow-hidden py-4 px-4 md:py-2 flex flex-col gap-1 text-[0.7rem] text-[#535665] " >
22
25
< div className = "relative" >
23
26
< img
24
27
src = {
@@ -82,8 +85,8 @@ const RestruarantCards = (props) => {
82
85
</ span >
83
86
</ div >
84
87
</ div >
85
- </ Link >
86
- </ div >
88
+ </ div >
89
+ </ Link >
87
90
) ;
88
91
} ;
89
92
Original file line number Diff line number Diff line change @@ -40,7 +40,7 @@ const ScrollToTop = () => {
40
40
onClick = { scrollToTop }
41
41
style = { { display : isVisible ? "block" : "none" } }
42
42
>
43
- < div className = "w-10 h-10 rounded-full relative cursor-pointer" >
43
+ < div className = "w-10 h-10 rounded-full relative cursor-pointer hover:shadow-xl ease-in duration-200 hover:scale-105 " >
44
44
< div
45
45
className = "w-full h-full rounded-full"
46
46
style = { {
@@ -58,6 +58,3 @@ const ScrollToTop = () => {
58
58
} ;
59
59
60
60
export default ScrollToTop ;
61
-
62
-
63
-
You can’t perform that action at this time.
0 commit comments