Compare commits
2 Commits
6a89cc4aeb
...
2afd2ff119
Author | SHA1 | Date |
---|---|---|
|
2afd2ff119 | |
|
917bf91060 |
|
@ -303,7 +303,6 @@
|
|||
.left {
|
||||
display: grid;
|
||||
grid-template-rows: minmax(0, 1fr) auto;
|
||||
overflow: hidden;
|
||||
}
|
||||
.toolbar {
|
||||
display: flex;
|
||||
|
|
|
@ -34,7 +34,11 @@
|
|||
|
||||
<main>
|
||||
<div class="color" style="background-color: rgba({red},{green},{blue},{alpha})">
|
||||
<div class="label" style="color: rgb({255-red}, {255-green}, {255-blue})">{index}</div>
|
||||
<div class="label" style="color: rgb({255-red}, {255-green}, {255-blue})">
|
||||
{#if swatchExists}
|
||||
{index}
|
||||
{/if}
|
||||
</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="add swatch" tooltipPosition="top" icon={AddLarge} on:click={addSwatch}></Button>
|
||||
|
|
Loading…
Reference in New Issue