Compare commits

...

2 Commits

Author SHA1 Message Date
Yanick Champoux 84e276225c Merge branch 'move-buttons' 2024-02-10 12:00:11 -05:00
Yanick Champoux 41d78a57f3 move the button for mobile 2024-02-10 11:59:47 -05:00
1 changed files with 15 additions and 17 deletions

View File

@ -48,28 +48,26 @@
</div>
<div class="notes s8">
{notes}
<div class="actions">
<button on:click={toggle_cart}
><i>
{#if is_in_cart}
remove_shopping_cart{:else}
add_shopping_cart
{/if}
</i></button>
<button title="hide game" on:click={toggle_game_visibility}
>{#if is_hidden}<i>visibility_off</i>{:else}
<i>visibility</i>
{/if}
</button>
</div>
</div>
<div class="s3 updated-at">
<div class="s4 updated-at">
{#if updated_at}
{pretty_date(updated_at)}
{/if}
</div>
<div class="s1">
<div></div>
<div class="s1"></div>
<div class="s11 actions">
<button on:click={toggle_cart}
><i>
{#if is_in_cart}
remove_shopping_cart{:else}
add_shopping_cart
{/if}
</i></button>
<button title="hide game" on:click={toggle_game_visibility}
>{#if is_hidden}<i>visibility_off</i>{:else}
<i>visibility</i>
{/if}
</button>
</div>
</div>
</div>