diff options
author | sterni <sternenseemann@systemli.org> | 2021-04-06T09·19+0200 |
---|---|---|
committer | sterni <sternenseemann@systemli.org> | 2021-04-06T09·22+0000 |
commit | c28d9710d6b84c682f6f6f3001f97e18703fb28a (patch) | |
tree | e4bd7d48a61dd5a20d995867abf10242bf8e5d7e | |
parent | a87533695f3bede9c50476008c0513bea234c18b (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>
-rw-r--r-- | third_party/cgit/tvl-extra.css | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/third_party/cgit/tvl-extra.css b/third_party/cgit/tvl-extra.css index f174b2c03fd3..52c4dc292fa5 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; } |