Skip to content

Commit 90c5680

Browse files
committed
update: animation.
1 parent 1d95514 commit 90c5680

2 files changed

Lines changed: 9 additions & 7 deletions

File tree

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,5 +95,5 @@
9595
"svelte-preprocess"
9696
]
9797
},
98-
"packageManager": "pnpm@10.15.1"
98+
"packageManager": "pnpm@10.20.0"
9999
}

src/routes/(console)/project-[region]-[project]/databases/database-[database]/(suggestions)/empty.svelte

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2065,14 +2065,16 @@
20652065
/* New animation with border glow and edge pulses */
20662066
&[data-anim='new'] {
20672067
/* bg wash: 3% subtle | 7% default */
2068-
background: rgba(253, 54, 110, 0.03);
2068+
/*background: rgba(253, 54, 110, 0.03);
20692069
@supports (background: color-mix(in oklab, #fd366e 1%, transparent)) {
20702070
background: linear-gradient(
20712071
135deg,
20722072
color-mix(in oklab, #fd366e 3%, transparent) 0%,
20732073
color-mix(in oklab, #fe9567 3%, transparent) 100%
20742074
);
2075-
}
2075+
}*/
2076+
2077+
background: transparent;
20762078
20772079
/* border colors: pink 0.4 | orange 0.25 */
20782080
--border-pink: rgba(253, 54, 110, 0.4);
@@ -2150,11 +2152,11 @@
21502152
}
21512153
21522154
.edge-glow.left .grad {
2153-
animation: leftPulse 6s ease-in-out infinite;
2155+
animation: leftPulse 6s ease-in-out infinite backwards;
21542156
}
21552157
21562158
.edge-glow.right .grad {
2157-
animation: rightPulse 6s ease-in-out infinite;
2159+
animation: rightPulse 6s ease-in-out infinite backwards;
21582160
}
21592161
21602162
/* top/bottom ambient: opacity 0.05 | spread 25% | static (no animation) */
@@ -2346,7 +2348,7 @@
23462348
@keyframes leftPulse {
23472349
0%,
23482350
100% {
2349-
opacity: 0.15;
2351+
opacity: 0;
23502352
}
23512353
33% {
23522354
opacity: 0.35;
@@ -2359,7 +2361,7 @@
23592361
@keyframes rightPulse {
23602362
0%,
23612363
100% {
2362-
opacity: 0.15;
2364+
opacity: 0;
23632365
}
23642366
33% {
23652367
opacity: 0.35;

0 commit comments

Comments
 (0)