fix(3p/cgit): fix max-width for #summary

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>
This commit is contained in:
sterni 2021-04-06 11:19:00 +02:00
parent a87533695f
commit c28d9710d6

View file

@ -1,4 +1,4 @@
/* limit the width of /about/** to help readability */
.content #summary {
max-width: 800 px;
max-width: 800px;
}