Move a warning element down.

This commit is contained in:
Greyson Parrelli
2026-07-23 21:28:06 -04:00
parent 3e34e9b293
commit ce70b1d89f
+7 -7
View File
@@ -193,13 +193,6 @@ export function ArrangePhase({ view, you, send }: Props) {
<p className="hint"> <p className="hint">
The <strong>rightmost</strong> card fights first. Food cards power up the The <strong>rightmost</strong> card fights first. Food cards power up the
next pet to their <strong>left</strong>. next pet to their <strong>left</strong>.
{trailingFoods > 0 && (
<span className="warn-text">
{' '}
{trailingFoods} food card{trailingFoods > 1 ? 's' : ''} on the far
left will be wasted!
</span>
)}
</p> </p>
<div <div
@@ -282,6 +275,13 @@ export function ArrangePhase({ view, you, send }: Props) {
</svg> </svg>
</div> </div>
{trailingFoods > 0 && (
<p className="hint warn-text">
{trailingFoods} food card{trailingFoods > 1 ? 's' : ''} on the far
left will be wasted!
</p>
)}
<div className="actions"> <div className="actions">
<button <button
className="btn btn-primary btn-big" className="btn btn-primary btn-big"