diff options
author | Vincent Ambo <mail@tazj.in> | 2021-09-25T14·29+0300 |
---|---|---|
committer | tazjin <mail@tazj.in> | 2021-09-26T10·33+0000 |
commit | 6c2e157264ccec14a8fa2623e03d684c9181a78a (patch) | |
tree | 0c027996825b7bba08d11015872bd9b82c00219f /web/tvl/logo/default.nix | |
parent | ddb21647e426c96e76fc6d6286147e103d029899 (diff) |
refactor(web/tvl/logo): Convert lambdas into <use> elements r/2918
Some mostly manual refactoring of the logo, assisted by inkscape to determine some details. Changes: * grid-aligned lambda & virus body shape * replaced all lambdas except the top-left one with <use> statements of that lambda, this ensures that they actually have the same shape * flipped the feet ... I think it looks better like this? * split the virus body and lambda into different groups, which also easily allows styling them separately Change-Id: Idaf1e3fe273b8c5461f5e433c1b0124fc534d9c5 Reviewed-on: https://cl.tvl.fyi/c/depot/+/3634 Tested-by: BuildkiteCI Reviewed-by: tazjin <mail@tazj.in>
Diffstat (limited to 'web/tvl/logo/default.nix')
-rw-r--r-- | web/tvl/logo/default.nix | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/web/tvl/logo/default.nix b/web/tvl/logo/default.nix index 9b7d5b9a0a27..0c0d0e5a95ec 100644 --- a/web/tvl/logo/default.nix +++ b/web/tvl/logo/default.nix @@ -60,7 +60,8 @@ let logoShapes = builtins.readFile ./logo-shapes.svg; logoSvg = style: '' - <svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" viewBox="420 860 1640 1500"> + <svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" viewBox="420 860 1640 1500" + xmlns:xlink="http://www.w3.org/1999/xlink"> <style>${style}</style> ${logoShapes} </svg> |