File tree Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -19,11 +19,11 @@ export default function CaseStudyCard({ studies = [] }: ICaseStudyCardProps) {
19
19
}
20
20
21
21
return (
22
- < div className = 'flex flex-wrap pt-10 lg:grid lg:grid-cols-3 lg:gap-8 lg:text-center gap-3 ' >
22
+ < div className = 'flex flex-wrap gap-3 pt-10 lg:grid lg:grid-cols-3 lg:gap-8 lg:text-center' >
23
23
{ studies . map ( ( study , index ) => (
24
24
< a key = { index } href = { `casestudies/${ study . id } ` } >
25
25
< div
26
- className = 'max-w-sm h-full overflow-hidden min-h-[300px] rounded-md border border-gray-200 bg-white p-4'
26
+ className = 'h-full min-h-[300px] max-w-sm overflow-hidden rounded-md border border-gray-200 bg-white p-4'
27
27
data-testid = 'CaseStudyCard-main'
28
28
>
29
29
< span className = 'mr-2' >
Original file line number Diff line number Diff line change @@ -28,7 +28,10 @@ function ScrollButton() {
28
28
return (
29
29
< div className = 'fixed bottom-14 right-4 z-40 h-16 w-12' >
30
30
{ backToTopButton && (
31
- < button className = 'rounded-full bg-white shadow-md hover:bg-[#8851FB] hover:scale-110 transition-all duration-300 ease-in-out' onClick = { scrollUp } >
31
+ < button
32
+ className = 'rounded-full bg-white shadow-md transition-all duration-300 ease-in-out hover:scale-110 hover:bg-[#8851FB]'
33
+ onClick = { scrollUp }
34
+ >
32
35
< img src = { scrollImage } alt = 'scroll to top' />
33
36
</ button >
34
37
) }
You can’t perform that action at this time.
0 commit comments