videorow.scss 540 B

123456789101112131415161718192021222324252627282930
  1. .videorow {
  2. min-height: 155px;
  3. display: -webkit-flex;
  4. display: -ms-flex;
  5. display: flex;
  6. flex-direction: row;
  7. flex-wrap: nowrap;
  8. margin-bottom: 16px;
  9. &__item {
  10. margin-right: 10px;
  11. &:last-child {
  12. margin: 0;
  13. }
  14. @media screen and (max-width: 1000px) {
  15. width: 33.33333%;
  16. }
  17. }
  18. &--smi {
  19. flex-direction: column;
  20. }
  21. &--smi &__item {
  22. margin: 0px;
  23. &:first-child {
  24. margin-bottom: 15px;
  25. }
  26. }
  27. }