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