Space every cell
parent
504b57361c
commit
650d4ec5aa
|
@ -54,6 +54,7 @@ table {
|
||||||
th,
|
th,
|
||||||
td {
|
td {
|
||||||
text-align: start;
|
text-align: start;
|
||||||
|
padding: 0.5em;
|
||||||
}
|
}
|
||||||
|
|
||||||
form {
|
form {
|
||||||
|
@ -66,10 +67,6 @@ form button {
|
||||||
margin-top: 0.5em;
|
margin-top: 0.5em;
|
||||||
}
|
}
|
||||||
|
|
||||||
table pre.spaced {
|
|
||||||
padding: 0.5em;
|
|
||||||
}
|
|
||||||
|
|
||||||
table td.clipped {
|
table td.clipped {
|
||||||
overflow-x: clip;
|
overflow-x: clip;
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
|
|
|
@ -16,9 +16,7 @@ const populateRedirects = async (redirKey) => {
|
||||||
h(
|
h(
|
||||||
"td",
|
"td",
|
||||||
{},
|
{},
|
||||||
h("a", { href: "/" + redirect.path }, [
|
h("a", { href: "/" + redirect.path }, [h("pre", {}, [redirect.path])])
|
||||||
h("pre", { className: "spaced" }, [redirect.path]),
|
|
||||||
])
|
|
||||||
),
|
),
|
||||||
h(
|
h(
|
||||||
"td",
|
"td",
|
||||||
|
|
Loading…
Reference in New Issue