From e93aad17634a24b88d1ce524248d1668272485cc Mon Sep 17 00:00:00 2001 From: Keshia Rose Date: Fri, 6 Aug 2021 13:00:06 -0700 Subject: [PATCH 1/2] Add class wrapLink to details link for wrapping. --- assets/js/community_extensions.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/assets/js/community_extensions.js b/assets/js/community_extensions.js index 55b1272e..26ed36ba 100644 --- a/assets/js/community_extensions.js +++ b/assets/js/community_extensions.js @@ -21,7 +21,7 @@ function append(extension) { } if (extension.website) { - h += '

More Details: ' + extension.website + '

'; + h += '

More Details: ' + extension.website + '

'; } if (extension.source_code) { From e51b13f447d630b15af1e27206d70f0e6f9fab12 Mon Sep 17 00:00:00 2001 From: Keshia Rose Date: Fri, 6 Aug 2021 13:01:29 -0700 Subject: [PATCH 2/2] Create wrapLink class that will wrap long text. --- assets/css/main.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/assets/css/main.css b/assets/css/main.css index 1ce47619..ed7f3048 100644 --- a/assets/css/main.css +++ b/assets/css/main.css @@ -191,6 +191,10 @@ html { /* Community connectors */ +.wrapLink { + overflow-wrap: anywhere; +} + .thumbnail { background-color: #fff; border: 1px solid #ccc;