Update Ember to 3.1
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
@charset "UTF-8";
|
||||
|
||||
/// Forces the element to fill its parent container.
|
||||
///
|
||||
/// @example scss - Usage
|
||||
/// .element {
|
||||
/// @include fill-parent;
|
||||
/// }
|
||||
///
|
||||
/// @example css - CSS Output
|
||||
/// .element {
|
||||
/// width: 100%;
|
||||
/// box-sizing: border-box;
|
||||
/// }
|
||||
|
||||
@mixin fill-parent() {
|
||||
width: 100%;
|
||||
|
||||
@if $border-box-sizing == false {
|
||||
box-sizing: border-box;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user