From 6069ca106f6fb14f1f04a60f11c73f659deb579d Mon Sep 17 00:00:00 2001 From: hello Date: Mon, 11 Nov 2024 19:51:34 +0530 Subject: [PATCH] fixed privacy disclaimer css --- styles/styles.css | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/styles/styles.css b/styles/styles.css index 921f989..e33a161 100644 --- a/styles/styles.css +++ b/styles/styles.css @@ -73,11 +73,11 @@ body { padding: var(--spacing-md) var(--spacing-md); color: #fff; background: linear-gradient(to right, #9f9f9f 0, #fff 10%, #868686 20%); - background-size: 200% auto; + background-size: 400% auto; background-position: 0; -webkit-background-clip: text; -webkit-text-fill-color: transparent; - animation: shine 3s infinite linear; + animation: shine 6s infinite linear; animation-fill-mode: forwards; font-weight: 600; font-size: 16px; @@ -93,11 +93,10 @@ body { @keyframes shine { 0% { - background-position: 0; + background-position: 0%; } - 60%, 100% { - background-position: 180px; + background-position: 400%; } }