From 5d02ab11f8081aae377562a49d0acfdeca54cc7c Mon Sep 17 00:00:00 2001 From: protoclown <ornano@felinn.org> Date: Tue, 21 Feb 2023 17:32:09 +0100 Subject: [PATCH] fix: addresses #107 --- hiboo/templates/base.html | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/hiboo/templates/base.html b/hiboo/templates/base.html index 3b78f96..68c0634 100644 --- a/hiboo/templates/base.html +++ b/hiboo/templates/base.html @@ -85,7 +85,9 @@ <section class="content"> <div class="container-fluid"> {% for category, message in get_flashed_messages(with_categories=True) or [] %} - <div class="alert alert-{{ category or "info" }}">{{ message }}</div> + <div class="col-md-6 col"> + <div class="alert alert-{{ category or "info" }} text-break">{{ message }}</div> + </div> {% endfor %} {% if current_user.time_to_deletion and current_user.time_to_deletion() %} <div class="alert alert-warning">{% trans %}Your account has no active profile, it will be deleted in{% endtrans %} {{ utils.babel.dates.format_timedelta(current_user.time_to_deletion()) }}</div> -- GitLab