mirror of
https://github.com/correl/planning-poker.git
synced 2024-11-14 19:19:30 +00:00
Style the player list
This commit is contained in:
parent
a49612b3ba
commit
ae42bccd9c
2 changed files with 17 additions and 1 deletions
|
@ -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)
|
||||
}
|
||||
|
|
|
@ -31,6 +31,7 @@ colors =
|
|||
|
||||
fontSizes =
|
||||
{ huge = 80
|
||||
, big = 30
|
||||
, normal = 18
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue