diff options
author | Javier Sánchez Parra <jsanchez@soleta.eu> | 2022-02-23 16:51:04 +0100 |
---|---|---|
committer | Javier Sánchez Parra <jsanchez@soleta.eu> | 2022-02-24 17:05:12 +0100 |
commit | af4b07cecf032ed4812eb0af288a00a966eb36d1 (patch) | |
tree | 11f602fcd1be627b6117aaf2d6b823b8672b501a | |
parent | 42ba24c9f9e751038cb63cef45016d231915fefe (diff) |
Wrap selected clients list
Otherwise, the list overflows the screen when users select many clients.
-rw-r--r-- | ogcp/templates/macros.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ogcp/templates/macros.html b/ogcp/templates/macros.html index a839ce5..a779dd7 100644 --- a/ogcp/templates/macros.html +++ b/ogcp/templates/macros.html @@ -54,7 +54,7 @@ {% endmacro %} {% macro cmd_selected_clients(ip_list) -%} -<ul class="list-group mx-5 list-group-horizontal-sm"> +<ul class="list-group mx-5 list-group-horizontal-sm d-flex flex-wrap"> {% for ip in ip_list %} <li class="list-group-item flex-fill list-group-item-info">{{ ip }}</li> {% endfor %} |