add correct list style to worktimeline item (#136)
This commit is contained in:
parent
d9008bacc8
commit
8bf00cf179
1 changed files with 3 additions and 3 deletions
|
|
@ -35,17 +35,17 @@ const { job, i18n } = Astro.props;
|
|||
locale={i18n.locale}
|
||||
translationForNow={i18n.translations.now}
|
||||
/>
|
||||
<ul class="pt-3 pb-6">
|
||||
<ul class="ml-[18px] list-disc pt-3 pb-6 text-white">
|
||||
{
|
||||
Array.isArray(job.description) ? (
|
||||
job.description.map((d) => (
|
||||
<li>
|
||||
<Typography variant="paragraph">• {d}</Typography>
|
||||
<Typography variant="paragraph">{d}</Typography>
|
||||
</li>
|
||||
))
|
||||
) : (
|
||||
<li>
|
||||
<Typography variant="paragraph">• {job.description}</Typography>
|
||||
<Typography variant="paragraph">{job.description}</Typography>
|
||||
</li>
|
||||
)
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue