section.scss 494 Bytes
Newer Older
mntmn's avatar
mntmn committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
@import "vars";
@import "mixins";

.section {
  // min-height: 100%;
  min-height: 50px !important;
  position: relative;
  //@include clearfix;
  background-color: #fff;
  background-position: center;
  background-size: cover;

  &.active {
    .section-padding-corner.in,
    .section-padding.in {
      display: block;
    }
  }
}

.space-empty,
.section-empty {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: 800;
  pointer-events: none;
  display: block;
}