Skip to content

Commit

Permalink
init delete button
Browse files Browse the repository at this point in the history
  • Loading branch information
mishankov committed Jan 17, 2024
1 parent 161d850 commit 86d405d
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/manipulations/components/Manipulation.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
{:else if manipulation.type == "splitJoin"}
<SplitJoin bind:splitString={manipulation.splitString} bind:joinString={manipulation.joinString} bind:innerManipulations={manipulation.innerManipulations}/>
{/if}
<button>x</button>
</div>

<style>
Expand All @@ -36,4 +37,11 @@
border: 2px solid var(--manipulation-border-color);
border-radius: 10px;
}
div {
display: flex;
flex-direction: row;
gap: 10px;
align-items: center;
}
</style>

0 comments on commit 86d405d

Please sign in to comment.