console: drop the "you" under the next-step button
The banner already says whose turn it is. Co-Authored-By: Claude Fable 5.1 <noreply@anthropic.com>
This commit is contained in:
parent
97c792a2fc
commit
54333ef847
@ -646,7 +646,10 @@ export default function Lead() {
|
|||||||
onClick={() => setOpen(open === a.uid ? null : a.uid)}
|
onClick={() => setOpen(open === a.uid ? null : a.uid)}
|
||||||
>
|
>
|
||||||
<strong>{a.label}</strong>
|
<strong>{a.label}</strong>
|
||||||
<span>{a.by}</span>
|
{/* The banner above already says it is your turn; "you"
|
||||||
|
under the button repeated it. Only a by-line that names
|
||||||
|
someone else is worth the line. */}
|
||||||
|
{a.by && a.by !== 'you' ? <span>{a.by}</span> : null}
|
||||||
</button>
|
</button>
|
||||||
))}
|
))}
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@ -309,7 +309,7 @@
|
|||||||
|
|
||||||
/* Next step */
|
/* Next step */
|
||||||
.step { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 10px; }
|
.step { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 10px; }
|
||||||
.step__btn {
|
.step__btn { justify-content: center;
|
||||||
display: flex; flex-direction: column; align-items: flex-start; gap: 2px;
|
display: flex; flex-direction: column; align-items: flex-start; gap: 2px;
|
||||||
font: inherit; text-align: left; cursor: pointer;
|
font: inherit; text-align: left; cursor: pointer;
|
||||||
padding: 12px 18px; border-radius: var(--r-sm); border: 1px solid var(--zk-navy); background: var(--zk-navy); color: #fff;
|
padding: 12px 18px; border-radius: var(--r-sm); border: 1px solid var(--zk-navy); background: var(--zk-navy); color: #fff;
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user