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-
31import { RecordTile } from '@/components/Tiles/RecordTile' ;
42
53export type ExperienceTileProps = {
@@ -20,11 +18,10 @@ export function ExperienceTile({
2018 responsibilities,
2119} : ExperienceTileProps ) {
2220 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" >
2523 { 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" >
2825 { responsibility }
2926 </ li >
3027 ) ) }
You can’t perform that action at this time.
0 commit comments