File tree Expand file tree Collapse file tree 1 file changed +3
-6
lines changed Expand file tree Collapse file tree 1 file changed +3
-6
lines changed Original file line number Diff line number Diff line change 1
- import { ChevronRight } from 'lucide-react' ;
2
-
3
1
import { RecordTile } from '@/components/Tiles/RecordTile' ;
4
2
5
3
export type ExperienceTileProps = {
@@ -20,11 +18,10 @@ export function ExperienceTile({
20
18
responsibilities,
21
19
} : ExperienceTileProps ) {
22
20
const responsibilitiesAsHTML = responsibilities && responsibilities . length > 0 && (
23
- < div className = "mt-3 " >
24
- < ul className = "list-inside list-none space-y-1 text-gray-700 dark:text-gray-300" >
21
+ < div className = "mt-2 " >
22
+ < ul className = "-pb-1 list-inside list-none space-y-1 text-gray-700 dark:text-gray-300" >
25
23
{ responsibilities . map ( ( responsibility , index ) => (
26
- < li key = { index } >
27
- { < ChevronRight className = "mr-0.25 inline-block h-4 w-4 align-middle md:h-5 md:w-5" /> }
24
+ < li key = { index } className = "py-1" >
28
25
{ responsibility }
29
26
</ li >
30
27
) ) }
You can’t perform that action at this time.
0 commit comments