commit 1d6a98a40e6f5b9ed8348f2c7a87b1d5cb9df250 Author: David Fifield david@bamsoftware.com Date: Fri Aug 23 22:41:51 2019 -0600
Limit the maximum horizontal content width to 55rem. --- proxy/static/index.css | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/proxy/static/index.css b/proxy/static/index.css index 6c75800..00602e0 100644 --- a/proxy/static/index.css +++ b/proxy/static/index.css @@ -26,7 +26,8 @@ header a { }
#content { - margin: 0 0 2.6rem 0; + max-width: 55rem; + margin: 0 auto 2.6rem auto; padding: 2.6rem 5.2rem; background-color: #FFFFFF; }
tor-commits@lists.torproject.org