diff options
| author | Karan Jayachandra <mail@karanjayachandra.com> | 2024-11-15 17:46:31 +0100 |
|---|---|---|
| committer | Karan Jayachandra <mail@karanjayachandra.com> | 2024-11-15 17:46:31 +0100 |
| commit | c4a4e35f93f18a13c6e4fc1401caad2b095a7ea7 (patch) | |
| tree | fe2f9627bc4fcb3b909f127e4667aa37a5af9759 /src/match_up/templates/players.j2 | |
| parent | d19720741fd37ea0a4b8a79f4f445bccdd360089 (diff) | |
Added the changes to clean up the guests layout
Diffstat (limited to 'src/match_up/templates/players.j2')
| -rw-r--r-- | src/match_up/templates/players.j2 | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/match_up/templates/players.j2 b/src/match_up/templates/players.j2 index 46ff172..cd41925 100644 --- a/src/match_up/templates/players.j2 +++ b/src/match_up/templates/players.j2 @@ -13,9 +13,10 @@ {% endfor %} </div> <h4 class="title is-4">Guests</h4> - <div class="columns"> + <div class="fixed-grid has-3-cols"> + <div class="grid"> {% for level in guests %} - <div class="column"> {{ guest_control(level, guests[level]) }} </div> + <div class="cell"> {{ guest_control(level, guests[level]) }} </div> {% endfor %} </div> </section> |
