Skip to content

Commit

Permalink
fix: timeline item highlights, spacing to title
Browse files Browse the repository at this point in the history
  • Loading branch information
maybeanerd committed Sep 9, 2024
1 parent f796692 commit 6372ee1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions components/profile/project/fact.vue
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@
</CustomTag>
</div>
<ul v-else>
<li v-for="(fact, index) in localizedFacts" :key="index" class="flex">
<UIcon name="ph:dot-outline" /> {{ unref(fact) }}
<li v-for="(fact, index) in localizedFacts" :key="index" class="flex items-center gap-1">
<UIcon name="i-heroicons:minus-small-20-solid" class="shrink-0" /> {{ unref(fact) }}
</li>
</ul>
</div>
Expand Down
4 changes: 2 additions & 2 deletions components/profile/project/item.vue
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
</div> <!-- TODO fallback image -->
<div
v-if="!props.isLast"
class="m-1 ml-6 md:ml-8 h-full
class="ml-6 md:ml-8 h-full
border-gray-600 border-dashed border-l-2"
/>
</div>
Expand All @@ -25,7 +25,7 @@
<InlineLink v-if="props.project.url" :to="props.project.url" class="text-xs" />
</div>

<h4 class="text-lg">
<h4 class="text-lg mt-2">
{{ role }}
</h4>

Expand Down

0 comments on commit 6372ee1

Please sign in to comment.