You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
360 B
17 lines
360 B
@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;
|
|
}
|
|
}
|
|
|
|
|