- Repo for opensource odoo website theme (since V13.0)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

34 lines
708 B

5 years ago
  1. #wrapwrap .s_clonable_boxes {
  2. width: 100%;
  3. height: auto!important; // Force height to avoid overlaps
  4. .row {
  5. display: flex;
  6. flex-flow: row wrap;
  7. > div {
  8. display: flex;
  9. flex-flow: column wrap;
  10. justify-content: center;
  11. text-align: center;
  12. padding-top: $grid-gutter-width/2;
  13. padding-bottom: $grid-gutter-width/2;
  14. @include media-breakpoint-down(md) {
  15. width: 100%;
  16. }
  17. }
  18. }
  19. }
  20. html[data-no-flex] .s_clonable_boxes {
  21. width: 100%;
  22. overflow: hidden;
  23. .item {
  24. height: 200px;
  25. overflow: hidden;
  26. text-align: center;
  27. }
  28. }