.u-empty-section

scss
.u-empty-section {
  @include media-breakpoint-down('tablet-landscape') {
    display: none;
  }
}

clase de ayuda para secciones vacias dentro del layout

Example

html
<div class="u-empty-section"></div>

.u-scrolling-content

scss
.u-scrolling-content {
  box-sizing: border-box;
  height: 80%;
  // margin-bottom: 90px;
  overflow: scroll;
  padding-top: 4px;
}

Utilitiy class for content with scroll

Example

html
<div class="u-scrolling-content">
  <!-- some scrolleable content -->
</div>