Skip to content

Commit

Permalink
shorten donation string slice length
Browse files Browse the repository at this point in the history
  • Loading branch information
secondl1ght committed Jan 21, 2024
1 parent 63066ec commit 03f78f6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/DonationOption.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
class="mx-auto flex w-full items-center justify-between rounded-xl bg-lightBlue px-4 py-4 text-body dark:bg-white/[0.15] dark:text-white md:w-[475px] md:justify-center md:space-x-4 md:px-0 md:py-3"
>
<!-- value -->
<span class="hidden lowercase md:block">{value.slice(0, 41)}...</span>
<span class="hidden lowercase md:block">{value.slice(0, 39)}...</span>
<span class="block uppercase md:hidden"
>{text}
<img
Expand Down

0 comments on commit 03f78f6

Please sign in to comment.