about summary refs log tree commit diff
path: root/web
diff options
context:
space:
mode:
authorVincent Ambo <mail@tazj.in>2021-09-24T14·15+0300
committertazjin <mail@tazj.in>2021-09-24T15·31+0000
commit2229a32ae90dfa272a515e7ee5b2b432f113e258 (patch)
treedf5f7c6d45bece26cf4320c2c3c14d3bbdee5a85 /web
parent48d5724dabe07957dd0043b65c5b45e05c159462 (diff)
fix(web/tvl/logo): Fix bounding box of the SVG file r/2912
This trims the huge amount of whitespace on all sides of the logo.

Change-Id: Ic14247e002839db729131550f7c7528d080ab519
Reviewed-on: https://cl.tvl.fyi/c/depot/+/3627
Tested-by: BuildkiteCI
Reviewed-by: sterni <sternenseemann@systemli.org>
Diffstat (limited to 'web')
-rw-r--r--web/tvl/logo/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/web/tvl/logo/default.nix b/web/tvl/logo/default.nix
index cb09dc28ec..945bf1da73 100644
--- a/web/tvl/logo/default.nix
+++ b/web/tvl/logo/default.nix
@@ -15,7 +15,7 @@ let
 
   logoShapes = builtins.readFile ./logo-shapes.svg;
   logoSvg = style: ''
-    <svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" viewBox="0 0 2480 3508">
+    <svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" viewBox="420 860 1640 1500">
       <style>${style}</style>
       ${logoShapes}
     </svg>