Skip to content

Commit

Permalink
2024-09-13T23-21-41
Browse files Browse the repository at this point in the history
  • Loading branch information
sspilleman committed Sep 13, 2024
1 parent d132b79 commit 30b213e
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 4 deletions.
6 changes: 3 additions & 3 deletions src/lib/components/Header.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -75,23 +75,23 @@
<div>
ratecard
{#if $ratecard?.length > 0}
<Indicator class="inline-block" color="green" />
<Indicator class="inline-block bg-lightgreen" />
{:else}
<Indicator class="inline-block" color="red" />
{/if}
</div>
<div>
computation
{#if $computation?.length > 0}
<Indicator class="inline-block" color="green" />
<Indicator class="inline-block bg-lightgreen" />
{:else}
<Indicator class="inline-block" color="red" />
{/if}
</div>
<div>
usage
{#if $usage?.length > 0}
<Indicator class="inline-block" color="green" />
<Indicator class="inline-block bg-lightgreen" />
{:else}
<Indicator class="inline-block" color="red" />
{/if}
Expand Down
2 changes: 1 addition & 1 deletion src/routes/ratecard/Proposal.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -101,5 +101,5 @@
</tr>
</tbody>
</table>
<Button on:click={xlsx}>export to xls</Button>
<Button on:click={xlsx} size="sm" outline color="green"><img class="w-6 h-6 me-2" src="./excel.svg" alt="" />export to xls</Button>
{/if}
21 changes: 21 additions & 0 deletions static/excel.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 30b213e

Please sign in to comment.