diff --git a/output/script.js b/output/script.js index 4e545b0..a52d0fd 100644 --- a/output/script.js +++ b/output/script.js @@ -10,7 +10,7 @@ function createJoinLinkButtons() { Array.from(elements).forEach((td_element) => { a_href = td_element.getElementsByTagName('a')[0]; // get first (only) element join_link = a_href.getAttribute("href"); // get link - button_content = join_link.substring(0, 30) + "..."; + button_content = join_link.substring(0, 31) + "..."; td_element.innerHTML = button_content; }); diff --git a/output/styles.css b/output/styles.css index 3775b36..6a9488e 100644 --- a/output/styles.css +++ b/output/styles.css @@ -10,7 +10,7 @@ #th_users { } .td_users { text-align: right; } #th_preview { width:19%; } -#th_join_url { width:17%; } +#th_join_url { width:15%; } .td_join_url { font-family: monospace; white-space: nowrap;