third-party-references.scss 540 B

1234567891011121314151617181920212223242526272829
  1. @keyframes slide-in {
  2. 0% {
  3. transform: translateY(25%);
  4. opacity: 0;
  5. bottom: var(--spacing-05);
  6. }
  7. 100% {
  8. transform: translateY(0);
  9. opacity: 1;
  10. bottom: var(--spacing-06);
  11. }
  12. }
  13. .fade-slide-in {
  14. opacity: 0;
  15. transition: opacity 0.3s ease; /* Smooth opacity transition */
  16. animation: slide-in 0.3s ease-in-out forwards;
  17. animation-delay: 300ms;
  18. }
  19. .tpr-editor-prompt-container {
  20. position: absolute;
  21. z-index: 1;
  22. bottom: var(--spacing-06);
  23. right: var(--spacing-06);
  24. width: 90%;
  25. max-width: 512px;
  26. }