_fill-parent.scss 118 B

1234567
  1. @mixin fill-parent() {
  2. width: 100%;
  3. @if $border-box-sizing == false {
  4. @include box-sizing(border-box);
  5. }
  6. }