VResponsive.css 477 B

123456789101112131415161718192021222324252627
  1. .v-responsive {
  2. display: flex;
  3. flex: 1 0 auto;
  4. max-height: 100%;
  5. max-width: 100%;
  6. overflow: hidden;
  7. position: relative;
  8. }
  9. .v-responsive--inline {
  10. display: inline-flex;
  11. flex: 0 0 auto;
  12. }
  13. .v-responsive__content {
  14. flex: 1 0 0px;
  15. max-width: 100%;
  16. }
  17. .v-responsive__sizer ~ .v-responsive__content {
  18. margin-inline-start: -100%;
  19. }
  20. .v-responsive__sizer {
  21. flex: 1 0 0px;
  22. transition: padding-bottom 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  23. pointer-events: none;
  24. }