Lock suggestions after reveal and move per-phase navigation

This commit is contained in:
2026-02-04 21:59:26 +01:00
parent e5e27af0af
commit ea0f8f2e27
8 changed files with 252 additions and 73 deletions

View File

@@ -135,6 +135,27 @@ button .chip {
align-items: center;
font-weight: 600;
}
.phase-nav {
display: flex;
flex-direction: row;
align-items: center;
justify-content: space-between;
gap: 12px;
}
.phase-nav .nav-text {
display: flex;
flex-direction: column;
gap: 6px;
color: #4b3a26;
}
.phase-nav .nav-actions {
display: flex;
gap: 8px;
align-items: center;
}
.vote-controls {
display: flex;
gap: 10px;

View File

@@ -22,3 +22,9 @@
justify-content: space-between;
gap: 12px;
}
input[readonly].readonly {
background: #f7f3eb;
color: #6f6353;
cursor: not-allowed;
}