blob: 71df3e48dec2f05ee62087c1ec289b5cd226d6a1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
//Flexbox mixins rely on https://github.com/timhettler/compass-flexbox
.b-form {}
.b-form__object--flex { @include display-flex; }
.b-form__object--fillspace {
/* This element will receive priority of size.
/* All other elements will be sized at the size dictated by their display type */
@include flex-grow(1);
& + .b-form__object--fillspace-gap { margin-left: .5em; }
}
.b-form__label { display: block;}
|