Space every cell
parent
504b57361c
commit
650d4ec5aa
|
@ -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;
|
||||
|
|
|
@ -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",
|
||||
|
|
Loading…
Reference in New Issue