ActivityVideo.module.scss 349 B

123456789101112131415161718192021
  1. .activity-video-page {
  2. width: 100%;
  3. height: 600px;
  4. padding: 20px;
  5. background: #ffffff;
  6. border-radius: 8px;
  7. overflow: hidden;
  8. margin-bottom: 20px;
  9. :global {
  10. .video-content {
  11. width: 100%;
  12. height: 100%;
  13. }
  14. }
  15. }
  16. @media screen and (max-width: 1024px) {
  17. .activity-video-page {
  18. padding: 0 20px;
  19. }
  20. }