brouilleursdeblanc/_sass/vendor/neat/grid/_row.scss
Michael Rose aadb22ffcf Cleanup stylesheets
- Add Bourbon and Neat
2014-09-04 14:48:52 -04:00

17 lines
360 B
SCSS

@mixin row($display: block, $direction: $default-layout-direction) {
@include clearfix;
$layout-direction: $direction !global;
@if $display == table {
display: table;
@include fill-parent;
table-layout: fixed;
$container-display-table: true !global;
}
@else {
display: block;
$container-display-table: false !global;
}
}