Skip to content

Commit

Permalink
Merge pull request #117 from crowdtainer/28022024_minor
Browse files Browse the repository at this point in the history
Minor: update packages and design improvements
  • Loading branch information
tfalencar authored Feb 28, 2024
2 parents 3991550 + 6e802ed commit 6e7ff52
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
8 changes: 4 additions & 4 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
"prettier-plugin-svelte": "^2.10.1",
"svelte": "^4.2.12",
"svelte-check": "^3.4.3",
"svelte-loading-spinners": "^0.1.7",
"svelte-loading-spinners": "^0.3.4",
"svelte-preprocess": "^5.0.3",
"tailwindcss": "^3.3.3",
"transliteration": "^2.3.5",
Expand Down
6 changes: 3 additions & 3 deletions src/lib/ProductQuantity.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
<div id="body" class="px-0 md:px-4 spacey-y-4">
{#each descriptions as product, index}
{#if $selection[index] > 0}
<div transition:slide|global="{{ duration: 250 }}">
<div transition:slide="{{ duration: 250 }}">
<div class="flex items-center">
<!-- Row start -->
<div class="w-6/12">
Expand All @@ -76,8 +76,8 @@
-
</button>
</div>
<div in:fade|global class="my-1 py-2 dark:text-white">
<p in:fade|global>{$selection[index]}</p>
<div in:fade class="my-1 py-2 dark:text-white">
<p in:fade>{$selection[index]}</p>
</div>
<div class="">
<button
Expand Down
2 changes: 1 addition & 1 deletion src/lib/ProjectDetails.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -262,7 +262,7 @@
<tr class="even:backdrop-brightness-75">
<td class="p-1">Terms and Conditions:</td>
<td class="pr-4">
<span class="inline-flex items-baseline">
<span class="inline-flex items-baseline max-w-48">
{#if campaignStaticData.legalContractURI && campaignStaticData.legalContractURI != ''}
<span>{campaignStaticData.legalContractURI}</span>
{:else}
Expand Down
2 changes: 1 addition & 1 deletion src/lib/ProjectGlobalView.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@
{state}
/>

<div class="min-w-max mx-2">
<div class="min-w-max">
{#if campaignStaticUI}
<p class="projectStatus">
<TimeLeft endTime={$campaignStaticUI.endDate} />
Expand Down

0 comments on commit 6e7ff52

Please sign in to comment.