Compare commits

..

No commits in common. "2afd2ff119becd712386af1e2f4e0cef406c9f3a" and "6a89cc4aebbd0063baf0700687c85cff213f9ede" have entirely different histories.

2 changed files with 2 additions and 5 deletions

View File

@ -303,6 +303,7 @@
.left { .left {
display: grid; display: grid;
grid-template-rows: minmax(0, 1fr) auto; grid-template-rows: minmax(0, 1fr) auto;
overflow: hidden;
} }
.toolbar { .toolbar {
display: flex; display: flex;

View File

@ -34,11 +34,7 @@
<main> <main>
<div class="color" style="background-color: rgba({red},{green},{blue},{alpha})"> <div class="color" style="background-color: rgba({red},{green},{blue},{alpha})">
<div class="label" style="color: rgb({255-red}, {255-green}, {255-blue})"> <div class="label" style="color: rgb({255-red}, {255-green}, {255-blue})">{index}</div>
{#if swatchExists}
{index}
{/if}
</div>
</div> </div>
<Button kind="ghost" size="small" disabled={swatchExists} iconDescription="replace swatch" tooltipPosition="top" icon={ColorSwitch} on:click={replaceSwatch}></Button> <Button kind="ghost" size="small" disabled={swatchExists} iconDescription="replace swatch" tooltipPosition="top" icon={ColorSwitch} on:click={replaceSwatch}></Button>
<Button kind="ghost" size="small" disabled={swatchExists} iconDescription="add swatch" tooltipPosition="top" icon={AddLarge} on:click={addSwatch}></Button> <Button kind="ghost" size="small" disabled={swatchExists} iconDescription="add swatch" tooltipPosition="top" icon={AddLarge} on:click={addSwatch}></Button>