Skip to content

Commit b4a9c9b

Browse files
authored
Merge pull request #45 from AnySoftKeyboard/refactor/modernize-codebase-tailwind-v4
2 parents ae9805a + eb57b2e commit b4a9c9b

3 files changed

Lines changed: 23 additions & 26 deletions

File tree

css/input.css

Lines changed: 8 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -330,10 +330,11 @@
330330
}
331331

332332
@utility shimmer-text {
333-
background: linear-gradient(90deg, white 0%, rgba(255,255,255,0.5) 50%, white 100%);
333+
background: linear-gradient(90deg, currentColor 0%, rgba(255,255,255,0.7) 50%, currentColor 100%);
334334
background-size: 200% 100%;
335335
background-clip: text;
336336
-webkit-background-clip: text;
337+
-webkit-text-fill-color: transparent;
337338
animation: shimmer 3s linear infinite;
338339
}
339340

@@ -466,29 +467,25 @@
466467
animation: spin 20s linear infinite;
467468
}
468469

470+
/* Slide up animations - start visible for better compatibility */
469471
@utility animate-slide-up {
470-
opacity: 0;
471-
animation: slide-up 0.8s ease-out forwards;
472+
animation: slide-up 0.8s ease-out;
472473
}
473474

474475
@utility animate-slide-up-1 {
475-
opacity: 0;
476-
animation: slide-up 0.8s ease-out 0.1s forwards;
476+
animation: slide-up 0.8s ease-out 0.1s backwards;
477477
}
478478

479479
@utility animate-slide-up-2 {
480-
opacity: 0;
481-
animation: slide-up 0.8s ease-out 0.2s forwards;
480+
animation: slide-up 0.8s ease-out 0.2s backwards;
482481
}
483482

484483
@utility animate-slide-up-3 {
485-
opacity: 0;
486-
animation: slide-up 0.8s ease-out 0.3s forwards;
484+
animation: slide-up 0.8s ease-out 0.3s backwards;
487485
}
488486

489487
@utility animate-slide-up-4 {
490-
opacity: 0;
491-
animation: slide-up 0.8s ease-out 0.4s forwards;
488+
animation: slide-up 0.8s ease-out 0.4s backwards;
492489
}
493490

494491
@utility glow-purple {

0 commit comments

Comments
 (0)