diff --git a/assets/src/PlanningPokerRoom.elm b/assets/src/PlanningPokerRoom.elm index a04ed97..7ad6c05 100644 --- a/assets/src/PlanningPokerRoom.elm +++ b/assets/src/PlanningPokerRoom.elm @@ -319,7 +319,15 @@ viewPlayers playerList showVotes = , width = fill , view = \player -> - el [ padding 10 ] + el + [ padding 10 + , Border.widthEach + { bottom = 1 + , left = 0 + , right = 0 + , top = 0 + } + ] (text player.name) } , { header = none @@ -336,7 +344,14 @@ viewPlayers playerList showVotes = in el [ padding 10 + , Border.widthEach + { bottom = 1 + , left = 0 + , right = 0 + , top = 0 + } , Font.alignRight + , Font.bold ] (text <| Maybe.withDefault " " vote) } diff --git a/assets/src/PlanningPokerUI.elm b/assets/src/PlanningPokerUI.elm index 18e0e91..f36214e 100644 --- a/assets/src/PlanningPokerUI.elm +++ b/assets/src/PlanningPokerUI.elm @@ -31,6 +31,7 @@ colors = fontSizes = { huge = 80 + , big = 30 , normal = 18 }