From ee947b06d1c43110bef25f6e91b5cf629e37e039 Mon Sep 17 00:00:00 2001
From: Kira <104837532+Kirillka8996@users.noreply.github.com>
Date: Sat, 16 May 2026 07:29:38 +0500
Subject: [PATCH] fix: prevent card overflow on screens (#1943)
## Summary
prevent card overflow
## Additional Context
---
### AI Usage
Did you use AI tools to help write this code? _**NO**_
---
src/network/html/FilesPage.html | 2 ++
1 file changed, 2 insertions(+)
diff --git a/src/network/html/FilesPage.html b/src/network/html/FilesPage.html
index 96014ee9..8c8880ac 100644
--- a/src/network/html/FilesPage.html
+++ b/src/network/html/FilesPage.html
@@ -261,6 +261,7 @@
}
.folder-link,
.file-link {
+ word-break: break-word;
color: var(--accent-color);
text-decoration: none;
cursor: pointer;
@@ -1216,6 +1217,7 @@
font-size: 14px;
}
.card {
+ line-break: anywhere;
padding: 12px;
margin: 10px 0;
}