mirror of
https://github.com/ankitects/anki.git
synced 2025-11-06 12:47:11 -05:00
Fix: Button widths
This commit is contained in:
parent
32601abe1f
commit
e86c42c735
3 changed files with 7 additions and 2 deletions
|
|
@ -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}
|
||||
|
||||
{/if}
|
||||
</span>
|
||||
<button on:click={() => bridgeCommand(`ease${info.i}`)}>
|
||||
{info.label}
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -27,7 +27,7 @@ body {
|
|||
}
|
||||
|
||||
button {
|
||||
min-width: 60px;
|
||||
min-width: 80px;
|
||||
white-space: nowrap;
|
||||
margin: 9px;
|
||||
position: relative;
|
||||
|
|
|
|||
Loading…
Reference in a new issue