diff options
author | Vincent Ambo <mail@tazj.in> | 2021-09-24T14·15+0300 |
---|---|---|
committer | tazjin <mail@tazj.in> | 2021-09-24T15·31+0000 |
commit | 2229a32ae90dfa272a515e7ee5b2b432f113e258 (patch) | |
tree | df5f7c6d45bece26cf4320c2c3c14d3bbdee5a85 /web | |
parent | 48d5724dabe07957dd0043b65c5b45e05c159462 (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.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/web/tvl/logo/default.nix b/web/tvl/logo/default.nix index cb09dc28ecfa..945bf1da73b2 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> |