From 956324dda2f7bb9d3ab2819d8cda7f9de7b6edb8 Mon Sep 17 00:00:00 2001
From: Chad Lavimoniere <clavimoniere@gitlab.com>
Date: Mon, 23 Sep 2024 12:46:17 -0400
Subject: [PATCH] Prevent links in project descriptions from making project
 rows too wide

When project descriptions contain links, they can cause the rows on a
user's contributed projects page to get too wide.

Changelog: fixed
---
 app/assets/stylesheets/page_bundles/projects.scss | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/app/assets/stylesheets/page_bundles/projects.scss b/app/assets/stylesheets/page_bundles/projects.scss
index 51ec4e9ef0fe5701..d77d5860d9602500 100644
--- a/app/assets/stylesheets/page_bundles/projects.scss
+++ b/app/assets/stylesheets/page_bundles/projects.scss
@@ -321,6 +321,10 @@
     .description {
       line-height: 1.5;
       max-height: $gl-spacing-scale-8;
+
+      a {
+        word-break: break-all;
+      }
     }
   }
 
-- 
GitLab