diff options
Diffstat (limited to 'webapp/src/components/table.rs')
-rw-r--r-- | webapp/src/components/table.rs | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/webapp/src/components/table.rs b/webapp/src/components/table.rs index c4a7398..d5bca4f 100644 --- a/webapp/src/components/table.rs +++ b/webapp/src/components/table.rs @@ -238,14 +238,8 @@ pub fn playing_view( } </div> <div class="center"> - <div class="playing-center-layout"> - <div class="current-trick"> - <TrickInPlay trick={playing.current_trick.trick.clone()}/> - </div> - </div> - <div> - { format!("It is {:?} to play", playing.current_player()) } - </div> + <TrickInPlay trick={playing.current_trick.trick.clone()}/> + <p>{ format!("It is {:?} to play", playing.current_player()) }</p> </div> <div class="hand north"> { dummy } |