about summary refs log tree commit diff
path: root/third_party/cgit
diff options
context:
space:
mode:
authorsterni <sternenseemann@systemli.org>2021-04-06T09·19+0200
committersterni <sternenseemann@systemli.org>2021-04-06T09·22+0000
commitc28d9710d6b84c682f6f6f3001f97e18703fb28a (patch)
treee4bd7d48a61dd5a20d995867abf10242bf8e5d7e /third_party/cgit
parenta87533695f3bede9c50476008c0513bea234c18b (diff)
fix(3p/cgit): fix max-width for #summary r/2447
Having a space between the number and the unit is not valid CSS.
I was aware of this problem, but apparently forgot to amend the fix.

Change-Id: I74936db515799763038669d0a11da53f28f722be
Reviewed-on: https://cl.tvl.fyi/c/depot/+/2867
Tested-by: BuildkiteCI
Reviewed-by: lukegb <lukegb@tvl.fyi>
Diffstat (limited to 'third_party/cgit')
-rw-r--r--third_party/cgit/tvl-extra.css2
1 files changed, 1 insertions, 1 deletions
diff --git a/third_party/cgit/tvl-extra.css b/third_party/cgit/tvl-extra.css
index f174b2c03f..52c4dc292f 100644
--- a/third_party/cgit/tvl-extra.css
+++ b/third_party/cgit/tvl-extra.css
@@ -1,4 +1,4 @@
 /* limit the width of /about/** to help readability */
 .content #summary {
-  max-width: 800 px;
+  max-width: 800px;
 }