section.scss 511 B

1234567891011121314151617181920212223242526272829303132
  1. @import "vars";
  2. @import "mixins";
  3. .section {
  4. // min-height: 100%;
  5. min-height: 50px !important;
  6. position: relative;
  7. //@include clearfix;
  8. background-color: #fff;
  9. background-position: center;
  10. background-size: cover;
  11. &.active {
  12. .section-padding-corner.in,
  13. .section-padding.in {
  14. display: block;
  15. }
  16. }
  17. }
  18. .space-empty,
  19. .section-empty {
  20. position: absolute;
  21. left: 0;
  22. top: 0;
  23. bottom: 0;
  24. right: 0;
  25. z-index: 800;
  26. pointer-events: none;
  27. opacity: 0.25;
  28. display: block;
  29. }