Skip to content

Commit

Permalink
minor tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
robalb committed Oct 18, 2024
1 parent fc00c01 commit b9cd2b4
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions svelte_blinkenweb/src/components/Controls.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -113,8 +113,8 @@
{/each}
</select>
{:else}
<button on:click={handle_back}>
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<button on:click={handle_back} >
<svg class="fill-none" width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M15 19L8 12L15 5" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
Back to editor
Expand Down Expand Up @@ -235,10 +235,16 @@
height: 2rem;
display: flex;
align-items: center;
/* transition: scale .1s ease-in-out; */
}
button:disabled{
color: gray;
}
button:not(:disabled):active{
/* transform: scale(1.1); */
border: 1px solid rgba(255,255,255,0.7);
}
button svg{
stroke: white;
Expand Down Expand Up @@ -304,6 +310,9 @@
.debugbt{
margin-left: 1rem;
}
.fill-none {
fill: none;
}
.stopinfo{
Expand Down

0 comments on commit b9cd2b4

Please sign in to comment.