1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2025-11-23 22:05:15 +02:00
This commit is contained in:
Anton Titovets
2025-07-11 15:58:15 +03:00
parent 116ff1fc30
commit 127cc38225
2 changed files with 3 additions and 3 deletions

View File

@@ -448,7 +448,7 @@ li > a.menu__link {
.falling-icon {
position: absolute;
top: -100px;
top: -20px;
width: 40px;
height: auto;
opacity: 0;
@@ -460,7 +460,7 @@ li > a.menu__link {
@keyframes falling {
0% {
transform: translateY(-100px) ;
transform: translateY(-20px) ;
opacity: 0.3;
}
31% {

View File

@@ -81,7 +81,7 @@ const FallingIcons = () => {
const positionInColumn = columnCounts[column];
const left = (column / columns) * 100 + (Math.random() * 100 / columns) - 5;
const duration = 15 + Math.random() * 10;
const delay = (positionInColumn / maxIconsPerColumn) * duration * 0.1;
const delay = (positionInColumn / maxIconsPerColumn) * duration * 0.8;
icons.push(
<img