// ============================================================================
// :: Scroll
// ============================================================================
/**
 * Layout that makes the content full height & scrollable on mobile, and makes the bottom fixed at the bottom of the screen
 */

// ============================================================================
// :: Root
// ============================================================================
.l-scroll {
  @include respond-to($breakpoint-tablet-default) {
    display: flex;
    flex-direction: column;
  }
}

// ============================================================================
// :: Elements
// ============================================================================
.l-scroll__content {
  @include respond-to($breakpoint-tablet-default) {
    flex-grow: 1;
  }
}

.l-scroll__bottom {
  margin: 0;
}