From fc13a8832d828322f4fa42eb0c3be35bfd7bb699 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=A2=D1=80=D0=BE=D1=88=D0=B8=D0=BD=20=D0=90=D0=BD=D1=82?= =?UTF-8?q?=D0=BE=D0=BD=20=D0=92=D0=B0=D0=BB=D0=B5=D1=80=D1=8C=D0=B5=D0=B2?= =?UTF-8?q?=D0=B8=D1=87?= Date: Sun, 12 Jul 2026 10:34:06 +0300 Subject: [PATCH] bugfix: text scroll now appears faster --- index.html | 6 +++--- styles.css | 4 ++-- sw.js | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/index.html b/index.html index 11cc6b8..a1e580b 100644 --- a/index.html +++ b/index.html @@ -10,7 +10,7 @@ - +
@@ -155,10 +155,10 @@
- + diff --git a/styles.css b/styles.css index 0843d24..fded20c 100644 --- a/styles.css +++ b/styles.css @@ -117,8 +117,8 @@ body { } @keyframes ticker-scroll { - 0% { transform: translateX(100%); } - 100% { transform: translateX(-100%); } + 0% { transform: translateX(0); } + 100% { transform: translateX(-50%); } } /* BUTTONS */ diff --git a/sw.js b/sw.js index 845a8a2..2b49ac8 100644 --- a/sw.js +++ b/sw.js @@ -1,4 +1,4 @@ -const CACHE_NAME = 'numnum-v39'; +const CACHE_NAME = 'numnum-v40'; const ASSETS = [ '/', '/index.html',