Files
edx-platform/common/static/sass/neat/grid/_fill-parent.scss
2013-07-10 09:17:58 -04:00

8 lines
118 B
SCSS

@mixin fill-parent() {
width: 100%;
@if $border-box-sizing == false {
@include box-sizing(border-box);
}
}