summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornsensfel <SpamShield0@noot-noot.org>2018-10-26 18:33:51 +0200
committernsensfel <SpamShield0@noot-noot.org>2018-10-26 18:33:51 +0200
commit14db0da97f92c3c47c270793c87a86ebac34cdac (patch)
treef176d4e47ec18a5fdd4df437836d19fdef994709 /src/roster-editor
parent343f1487285eee3167aaf07d8fadb26c8f0757c6 (diff)
...
Diffstat (limited to 'src/roster-editor')
-rw-r--r--src/roster-editor/src/View/CharacterSelection.elm18
1 files changed, 11 insertions, 7 deletions
diff --git a/src/roster-editor/src/View/CharacterSelection.elm b/src/roster-editor/src/View/CharacterSelection.elm
index c2c56fa..1ff4fb9 100644
--- a/src/roster-editor/src/View/CharacterSelection.elm
+++ b/src/roster-editor/src/View/CharacterSelection.elm
@@ -27,12 +27,16 @@ get_html model =
(Html.Attributes.class "selection-window"),
(Html.Attributes.class "character-selection")
]
- (
- (Html.text "Character Selection")
- ::
- (List.map
- (View.CharacterCard.get_minimal_html)
- (Array.toList model.characters)
+ [
+ (Html.text "Character Selection"),
+ (Html.div
+ [
+ (Html.Attributes.class "selection-window-listing")
+ ]
+ (List.map
+ (View.CharacterCard.get_minimal_html)
+ (Array.toList model.characters)
+ )
)
- )
+ ]
)