From 26c70d61a0afca299e242c6cb4b716b08c3f1625 Mon Sep 17 00:00:00 2001
From: Felix Eckhofer <felix@eckhofer.com>
Date: Mon, 6 Jan 2025 19:05:47 +0100
Subject: [PATCH] Allow download button to wrap again

---
 app/views/sessions/show.html.erb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app/views/sessions/show.html.erb b/app/views/sessions/show.html.erb
index 0e9ce46..37749a9 100644
--- a/app/views/sessions/show.html.erb
+++ b/app/views/sessions/show.html.erb
@@ -30,7 +30,7 @@
   <ul class="space-y-4 my-4">
     <% @session.filedrop_files.each do |file| %>
     <li class="text-gray-500 dark:text-slate-400 shadow dark:shadow-gray-500 rounded-lg p-4">
-        <div class="flex justify-between items-center max-w-full">
+        <div class="flex flex-wrap justify-between items-center max-w-full">
           <div class="overflow-x-auto mr-2 whitespace-nowrap">
             <div class="text-gray-900 dark:text-slate-300 text-lg font-semibold"><%= file.name %></div>
             <div class="text-sm">Size: <%= number_to_human_size(file.size) %></div>
-- 
GitLab