index.scss 395 B

12345678910111213141516171819202122232425
  1. @keyframes horizontalScrollTextRight {
  2. 0% {
  3. transform: translateX(-120%);
  4. margin-left: 0;
  5. }
  6. 100% {
  7. transform: translateX(0%);
  8. margin-left: 100%;
  9. }
  10. }
  11. @keyframes horizontalScrollTextLeft {
  12. 0% {
  13. transform: translateX(0%);
  14. margin-left: 100%;
  15. }
  16. 100% {
  17. transform: translateX(-120%);
  18. margin-left: 0;
  19. }
  20. }
  21. wx-action-sheet-item {
  22. padding: 0!important;
  23. }