Skip to content

Commit

Permalink
Show component size colors
Browse files Browse the repository at this point in the history
  • Loading branch information
dabreegster committed Aug 18, 2024
1 parent e79b3ae commit b561578
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion web/src/App.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@
<button class="outline" on:click={() => ($showAbout = true)}>
<img src={logoDark} style="height: 6vh;" alt="A/B Street logo" />
</button>
<span bind:this={topDiv} style="width: 100%" />
<span bind:this={topDiv} style="margin-left: 4px; width: 100%" />
</div>
<div slot="left">
<h1>Severance Snape</h1>
Expand Down
4 changes: 2 additions & 2 deletions web/src/DisconnectionsMode.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -64,8 +64,8 @@

<p>Component sizes:</p>
<ul>
{#each gj.components as size}
<li>{size}</li>
{#each gj.components as size, idx}
<li style:color={colors[idx % colors.length]}>{size}</li>
{/each}
</ul>
</div>
Expand Down

0 comments on commit b561578

Please sign in to comment.