Reorder CardInfo to show Retention Chart before a potentially long Review Log

This commit is contained in:
Kevin Nakamura 2025-07-07 02:37:29 +09:00
parent f927aa5788
commit 25eb1de0ad
No known key found for this signature in database
GPG key ID: 8CBF0A1C58E5523E
2 changed files with 6 additions and 6 deletions

View file

@ -37,16 +37,16 @@ License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
<CardStats {stats} />
</Row>
{#if showRevlog}
<Row>
<Revlog revlog={stats.revlog} {fsrsEnabled} />
</Row>
{/if}
{#if fsrsEnabled && showCurve}
<Row>
<ForgettingCurve revlog={stats.revlog} {desiredRetention} {decay} />
</Row>
{/if}
{#if showRevlog}
<Row>
<Revlog revlog={stats.revlog} {fsrsEnabled} />
</Row>
{/if}
{:else}
<CardInfoPlaceholder />
{/if}

View file

@ -108,7 +108,7 @@ License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
.forgetting-curve {
width: 100%;
max-width: 50em;
margin-bottom: 10em;
margin-bottom: 1em;
}
.time-range-selector {