diff options
author | Vincent Ambo <mail@tazj.in> | 2021-09-27T20·36+0300 |
---|---|---|
committer | tazjin <mail@tazj.in> | 2021-09-27T20·42+0000 |
commit | c0f2ec2f70023688bb2033d409f3a2887622f560 (patch) | |
tree | 40b16251ea5aadb1f915d5312739eda4c305bf89 | |
parent | 00de60fc3ba7ba7da774170ba9a01a373673a355 (diff) |
fix(web/tvl/logo): Make the logo slightly ... faster r/2931
grfn pointed out that the previous animation was so subtle that it could be mistaken for a symptom of perceptual distortion, which is not ideal. This doubles the speed of the animation to make it more obvious that animation is not taking place in the viewer's head. Change-Id: Icd836e91677dfab44357932b53673d701ac6b9f3 Reviewed-on: https://cl.tvl.fyi/c/depot/+/3647 Reviewed-by: grfn <grfn@gws.fyi> Tested-by: BuildkiteCI
-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 0c0d0e5a95ec..74ab4de7ddf4 100644 --- a/web/tvl/logo/default.nix +++ b/web/tvl/logo/default.nix @@ -28,7 +28,7 @@ let frameCss = frame: "${toString frame.at}% { fill: ${frame.colour}; }"; in '' #armchair-background { - animation: 60s infinite alternate armchairPalette; + animation: 30s infinite alternate armchairPalette; } @keyframes armchairPalette { |