Skip to content

Commit

Permalink
fixed privacy disclaimer css
Browse files Browse the repository at this point in the history
  • Loading branch information
hello committed Nov 11, 2024
1 parent c0c3127 commit 6069ca1
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions styles/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand All @@ -93,11 +93,10 @@ body {

@keyframes shine {
0% {
background-position: 0;
background-position: 0%;
}
60%,
100% {
background-position: 180px;
background-position: 400%;
}
}

Expand Down

0 comments on commit 6069ca1

Please sign in to comment.