diff --git a/static/css/styles.css b/static/css/styles.css index 414300c..8c31005 100644 --- a/static/css/styles.css +++ b/static/css/styles.css @@ -54,6 +54,7 @@ table { th, td { text-align: start; + padding: 0.5em; } form { @@ -66,10 +67,6 @@ form button { margin-top: 0.5em; } -table pre.spaced { - padding: 0.5em; -} - table td.clipped { overflow-x: clip; white-space: nowrap; diff --git a/static/js/shorten.js b/static/js/shorten.js index 2bbd4e2..1a5d2e9 100644 --- a/static/js/shorten.js +++ b/static/js/shorten.js @@ -16,9 +16,7 @@ const populateRedirects = async (redirKey) => { h( "td", {}, - h("a", { href: "/" + redirect.path }, [ - h("pre", { className: "spaced" }, [redirect.path]), - ]) + h("a", { href: "/" + redirect.path }, [h("pre", {}, [redirect.path])]) ), h( "td",