File tree Expand file tree Collapse file tree 1 file changed +3
-9
lines changed Expand file tree Collapse file tree 1 file changed +3
-9
lines changed Original file line number Diff line number Diff line change @@ -22,13 +22,7 @@ export function ExperienceTile({
22
22
const isTablet = useMediaQuery ( '(min-width: 768px)' ) ;
23
23
const isDesktop = useMediaQuery ( '(min-width: 1280px)' ) ;
24
24
return (
25
- < div
26
- className = {
27
- ( ! ( responsibilities && responsibilities . length > 0 ) && ! isTablet ? '-mb-6' : 'mb-6' ) +
28
- ' ' +
29
- 'flex items-center'
30
- }
31
- >
25
+ < div className = "-mb-2 flex items-center" >
32
26
< div className = "group relative flex-grow lg:-ml-[132px] xl:-ml-40 2xl:-ml-52" >
33
27
{ isTablet && (
34
28
< div className = "opacity-0 transition-opacity delay-100 md:group-hover:opacity-100" >
@@ -45,7 +39,7 @@ export function ExperienceTile({
45
39
</ div >
46
40
) }
47
41
< div className = "py-3 lg:pl-[132px] xl:pl-40 2xl:pl-52" >
48
- < div className = "mb-4 flex flex-col justify-between sm:flex-row md:items-start" >
42
+ < div className = "flex flex-col justify-between sm:flex-row md:items-start" >
49
43
< div >
50
44
< h2 className = "text-xl font-bold" > { position } </ h2 >
51
45
< LinkWithArrow
@@ -65,7 +59,7 @@ export function ExperienceTile({
65
59
) }
66
60
</ div >
67
61
{ responsibilities && responsibilities . length > 0 && (
68
- < div className = "mt-4 " >
62
+ < div className = "mt-3 " >
69
63
< ul className = "list-inside list-['-_'] space-y-1 text-gray-700 dark:text-gray-300" >
70
64
{ responsibilities . map ( ( responsibility , index ) => (
71
65
< li key = { index } > { responsibility } </ li >
You can’t perform that action at this time.
0 commit comments