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%); }