////
/// @group Main
////

/// Absolutely position an element and fill available space
@mixin absolute-fill {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
