diff --git a/TODO.md b/TODO.md index fa36e90..69396ff 100644 --- a/TODO.md +++ b/TODO.md @@ -9,9 +9,9 @@ ## Polish - [x] Do a pass on condensing overly verbose UI elements. For example, "Current Difficulty" could be replaced by "Difficulty" and "The Obstacle List" could be replaced by "Obstacles" -- [ ] Event log button should be the same size and position when expanded and collapsed in all screens +- [x] Event log button should be the same size and position when expanded and collapsed in all screens - [x] Align the "Current Difficulty" and "Successes" boxes -- [ ] Don't have dev mode toggling appear in the event log +- [x] Don't have dev mode toggling appear in the event log - [ ] Remove display of current deck size - [ ] Voting status in the between-scenes phase should be visual, not text-based - [ ] Players should be able to see who they voted for diff --git a/frontend/src/assets/css/scene-play.css b/frontend/src/assets/css/scene-play.css index 91edd03..f8ac909 100644 --- a/frontend/src/assets/css/scene-play.css +++ b/frontend/src/assets/css/scene-play.css @@ -26,6 +26,10 @@ /* Corner button that toggles the inline Event Log without moving. */ .log-reopen-btn { + box-sizing: border-box; + width: 132px; + height: 44px; + white-space: nowrap; position: fixed; bottom: 20px; right: 20px; diff --git a/frontend/src/components/ScenePhase.svelte b/frontend/src/components/ScenePhase.svelte index dd28c1e..b032e93 100644 --- a/frontend/src/components/ScenePhase.svelte +++ b/frontend/src/components/ScenePhase.svelte @@ -72,6 +72,7 @@