Merge pull request #1478 from nasa/open1266

[Frontend] .form-row cleanups for Inspector
This commit is contained in:
Victor Woeltjen 2017-03-21 11:57:40 -07:00 committed by GitHub
commit f09a76e23b

View File

@ -76,17 +76,18 @@
&:not(.first) { &:not(.first) {
border-top: 1px solid $colorFormLines; border-top: 1px solid $colorFormLines;
} }
.form-row { }
@include align-items(center); .form-row {
border: none; @include align-items(center);
padding: $interiorMarginSm 0; border: none !important;
.label { margin-bottom: 0 !important;
min-width: 80px; padding: $interiorMarginSm 0;
} .label {
input[type='text'], min-width: 80px;
input[type='search'] { }
width: 100%; input[type='text'],
} input[type='search'] {
width: 100%;
} }
} }
} }