mirror of
https://github.com/ankitects/anki.git
synced 2025-11-06 20:57:13 -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>
|
</script>
|
||||||
|
|
||||||
<span>
|
<span>
|
||||||
{info.due}
|
{#if info.due}
|
||||||
|
{info.due}
|
||||||
|
{:else}
|
||||||
|
|
||||||
|
{/if}
|
||||||
</span>
|
</span>
|
||||||
<button on:click={() => bridgeCommand(`ease${info.i}`)}>
|
<button on:click={() => bridgeCommand(`ease${info.i}`)}>
|
||||||
{info.label}
|
{info.label}
|
||||||
|
|
|
||||||
|
|
@ -65,6 +65,7 @@ License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
|
||||||
width: 100%;
|
width: 100%;
|
||||||
display: grid;
|
display: grid;
|
||||||
grid-template-columns: auto 1fr auto;
|
grid-template-columns: auto 1fr auto;
|
||||||
|
justify-content: space-between;
|
||||||
justify-items: center;
|
justify-items: center;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -27,7 +27,7 @@ body {
|
||||||
}
|
}
|
||||||
|
|
||||||
button {
|
button {
|
||||||
min-width: 60px;
|
min-width: 80px;
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
margin: 9px;
|
margin: 9px;
|
||||||
position: relative;
|
position: relative;
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue