Skip to content
This repository was archived by the owner on Oct 13, 2022. It is now read-only.

Commit a89f657

Browse files
committed
style tweak
1 parent 3cb806a commit a89f657

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

src/project/Chooser.html

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
11
<svelte:window on:mousedown="set({ showMenu: false })"/>
22

33
<div class="chooser {focused ? 'focused' : ''}">
4-
<button class="main" on:click="set({ showMenu: !showMenu })">{selected.name}</button>
4+
<div style="width: 9999px">
5+
<button class="main" on:click="set({ showMenu: !showMenu })">{selected.name}</button>
6+
7+
{#if status}
8+
<span class="status">{status}</span>
9+
{/if}
10+
</div>
511

612
{#if showMenu}
713
<div class="menu" on:mousedown="event.stopPropagation()">
814
{#each options as option}
915
<button class="{option === selected ? 'selected' : ''}" on:click="select(option)">{option.name}</button>
1016
{/each}
1117
</div>
12-
13-
<!-- <div class="shadow-blocker"></div> -->
14-
{/if}
15-
16-
{#if status}
17-
<span class="status">{status}</span>
1818
{/if}
1919

2020
<div class="actions" style="width: {actions ? actions.length * 2 : 0}em">

0 commit comments

Comments
 (0)