Skip to content

Commit

Permalink
darker border
Browse files Browse the repository at this point in the history
  • Loading branch information
wbbaker committed Mar 4, 2025
1 parent a91e4cb commit 4f3e17b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@
<VCardContent class="text-sm">
<p v-if="typeof inventoryDWC === 'string'" v-html="inventoryDWC"/>
<ul v-else class="tree">
<li v-for="specimen in inventoryDWC" :key="specimen.id" class="py-3 border-b last:border-none first:pt-0 last:pb-0">
<li v-for="specimen in inventoryDWC" :key="specimen.id" class="py-3 border-b border-base-border last:border-none first:pt-0 last:pb-0">
<SpecimenSummary
:specimen="specimen"
:otu-id="otuId"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ For further reference see https://dwc.tdwg.org/terms/.
-->
<template>
<div v-html="nameAndAuthor(specimen)" class="font-bold mb-2"/>
<ul class="tree ml-7 relative list-disc gap-2">
<ul class="tree ml-7 relative list-disc">
<li class="my-1 last:mb-0">{{ describeSpecimen(specimen) }}</li>
<li class="my-1 last:mb-0" v-if="describeDetails(specimen).length > 0">{{ describeDetails(specimen).join(', ') }}</li>
<GalleryImage
Expand Down

0 comments on commit 4f3e17b

Please sign in to comment.