Remove Player 2 stats from UI - show only current player info

This commit is contained in:
sokol
2026-02-21 17:48:38 +03:00
parent f19e178217
commit 7035f0457b
3 changed files with 58 additions and 35 deletions

View File

@@ -231,6 +231,32 @@ body {
min-height: 40px;
}
/* Selected Cell Info */
.selected-cell-info {
background: var(--bg-panel);
border-radius: 8px;
padding: 12px;
margin-top: 10px;
}
.selected-cell-info h3 {
font-size: 0.9rem;
margin-bottom: 10px;
color: var(--text-secondary);
}
.cell-stats {
display: flex;
flex-direction: column;
gap: 6px;
}
.cell-stats .stat {
display: flex;
justify-content: space-between;
font-size: 0.85rem;
}
.action-buttons {
display: flex;
gap: 8px;