VPullToRefresh.css 565 B

123456789101112131415161718192021222324252627
  1. .v-pull-to-refresh {
  2. overflow: hidden;
  3. position: relative;
  4. }
  5. .v-pull-to-refresh__pull-down {
  6. position: absolute;
  7. width: 100%;
  8. transition: top 0.3s ease-out;
  9. }
  10. .v-pull-to-refresh__pull-down--touching {
  11. transition: none;
  12. }
  13. .v-pull-to-refresh__pull-down-default {
  14. display: flex;
  15. width: 100%;
  16. height: 100%;
  17. justify-content: center;
  18. align-items: flex-end;
  19. padding-bottom: 10px;
  20. }
  21. .v-pull-to-refresh__scroll-container {
  22. position: relative;
  23. transition: top 0.3s ease-out;
  24. }
  25. .v-pull-to-refresh__scroll-container--touching {
  26. transition: none;
  27. }