Files
2015-08-12 15:44:28 -05:00

41 lines
666 B
SCSS

// Label
// --------------------------------------------------
$input-label-color: #888 !default;
.input-label {
display: block;
max-width: 200px;
color: $input-label-color;
font-size: inherit;
white-space: nowrap;
}
[fixed-label] .input-label {
display: block;
max-width: 200px;
width: 30%;
min-width: 100px;
color: $input-label-color;
font-size: inherit;
white-space: nowrap;
}
.item-input[stacked-label] {
flex-direction: column;
align-items: flex-start;
.input-label {
align-self: stretch;
margin-bottom: 0;
max-width: 100%;
}
.input-label + .input {
margin-top: 0;
padding-left: 16px;
}
}