Fix: Button widths

This commit is contained in:
Luc Mcgrady 2025-10-02 17:49:23 +01:00
parent 32601abe1f
commit e86c42c735
No known key found for this signature in database
GPG key ID: 4F3D7A0B17CC3D9C
3 changed files with 7 additions and 2 deletions

View file

@ -10,7 +10,11 @@ License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
</script>
<span>
{info.due}
{#if info.due}
{info.due}
{:else}
&nbsp;
{/if}
</span>
<button on:click={() => bridgeCommand(`ease${info.i}`)}>
{info.label}

View file

@ -65,6 +65,7 @@ License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
width: 100%;
display: grid;
grid-template-columns: auto 1fr auto;
justify-content: space-between;
justify-items: center;
align-items: center;
}

View file

@ -27,7 +27,7 @@ body {
}
button {
min-width: 60px;
min-width: 80px;
white-space: nowrap;
margin: 9px;
position: relative;