From 4fbdf7902ac176df26565042e9537724afd72c45 Mon Sep 17 00:00:00 2001 From: lockbitchat Date: Wed, 13 Aug 2025 22:46:09 -0400 Subject: [PATCH] Updated all text to English --- src/styles/animations.css | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/styles/animations.css b/src/styles/animations.css index b08f3dc..a88a912 100644 --- a/src/styles/animations.css +++ b/src/styles/animations.css @@ -1,4 +1,4 @@ -/* Плавная прокрутка сообщений / появление */ +/* Smooth Message Scrolling/Appearance*/ @keyframes messageSlideIn { from { opacity: 0; @@ -10,19 +10,19 @@ } } -/* Пульсация иконок */ +/* Icon pulsation */ @keyframes iconPulse { 0%, 100% { opacity: 0.7; } 50% { opacity: 1; } } -/* Пульс для таймера */ +/* Pulse for the timer */ @keyframes pulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.05); } } -/* Скролл логотипов */ +/* Scroll of logos */ @keyframes walletLogosScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); }