diff options
Diffstat (limited to 'sw-ui/src/main')
-rw-r--r-- | sw-ui/src/main/kotlin/org/luxons/sevenwonders/ui/components/lobby/Lobby.kt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sw-ui/src/main/kotlin/org/luxons/sevenwonders/ui/components/lobby/Lobby.kt b/sw-ui/src/main/kotlin/org/luxons/sevenwonders/ui/components/lobby/Lobby.kt index 763898b3..6b652a4e 100644 --- a/sw-ui/src/main/kotlin/org/luxons/sevenwonders/ui/components/lobby/Lobby.kt +++ b/sw-ui/src/main/kotlin/org/luxons/sevenwonders/ui/components/lobby/Lobby.kt @@ -51,7 +51,7 @@ class LobbyPresenter(props: LobbyProps) : RComponent<LobbyProps, RState>(props) radialPlayerList(currentGame.players, currentPlayer) actionButtons(currentPlayer, currentGame) if (currentPlayer.isGameOwner) { - sideBar(currentGame) + setupPanel(currentGame) } } } @@ -89,7 +89,7 @@ class LobbyPresenter(props: LobbyProps) : RComponent<LobbyProps, RState>(props) } } - private fun RBuilder.sideBar(currentGame: LobbyDTO) { + private fun RBuilder.setupPanel(currentGame: LobbyDTO) { styledDiv { css { position = Position.fixed @@ -97,7 +97,7 @@ class LobbyPresenter(props: LobbyProps) : RComponent<LobbyProps, RState>(props) right = 1.rem width = 15.rem } - bpCard(Elevation.ONE) { + bpCard(Elevation.TWO) { styledH2 { css { margin(top = 0.px) |