mirror of
https://github.com/adulau/brouilleursdeblanc.git
synced 2024-11-07 12:06:26 +00:00
aadb22ffcf
- Add Bourbon and Neat
17 lines
360 B
SCSS
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;
|
|
}
|
|
}
|
|
|