_fill-parent.scss 118 Bytes
Newer Older
1 2 3 4 5 6 7
@mixin fill-parent() {
  width: 100%;

  @if $border-box-sizing == false {
    @include box-sizing(border-box);
  }
}