Styling tweaks
This commit is contained in:
parent
12f5e6f79e
commit
746bdc8b01
@ -6,10 +6,18 @@
|
|||||||
padding: $gap;
|
padding: $gap;
|
||||||
flex-wrap: wrap;
|
flex-wrap: wrap;
|
||||||
|
|
||||||
|
@include media($large-screen) {
|
||||||
|
flex-wrap: nowrap;
|
||||||
|
}
|
||||||
|
|
||||||
|
.search-bar__filters {
|
||||||
|
display: flex;
|
||||||
|
}
|
||||||
|
|
||||||
.usa-input {
|
.usa-input {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
flex-grow: 1;
|
flex-grow: 1;
|
||||||
flex-shrink: 0;
|
flex-shrink: 1;
|
||||||
flex-basis: 100%;
|
flex-basis: 100%;
|
||||||
height: $search-input-height;
|
height: $search-input-height;
|
||||||
position: relative;
|
position: relative;
|
||||||
|
@ -94,22 +94,24 @@
|
|||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class='usa-input'>
|
<div class="search-bar__filters">
|
||||||
<label for='filter-status'>Filter requests by status</label>
|
<div class='usa-input'>
|
||||||
<select v-model="statusValue" id="filter-status" name="filter-status">
|
<label for='filter-status'>Filter requests by status</label>
|
||||||
<option value="" selected disabled>Filter by status</option>
|
<select v-model="statusValue" id="filter-status" name="filter-status">
|
||||||
<option value="">All</option>
|
<option value="" selected disabled>Filter by status</option>
|
||||||
<option v-for="status in statuses" :value="status">!{ status }</option>
|
<option value="">All</option>
|
||||||
</select>
|
<option v-for="status in statuses" :value="status">!{ status }</option>
|
||||||
</div>
|
</select>
|
||||||
|
</div>
|
||||||
|
|
||||||
<div class='usa-input'>
|
<div class='usa-input'>
|
||||||
<label for='filter-dod-component'>Filter requests by DOD component</label>
|
<label for='filter-dod-component'>Filter requests by DOD component</label>
|
||||||
<select v-model="dodComponentValue" id="filter-dod-component" name="filter-dod-component">
|
<select v-model="dodComponentValue" id="filter-dod-component" name="filter-dod-component">
|
||||||
<option value="" selected disabled>Filter by DOD Component</option>
|
<option value="" selected disabled>Filter by DOD Component</option>
|
||||||
<option value="">All</option>
|
<option value="">All</option>
|
||||||
<option v-for="dodComponent in dodComponents" :value="dodComponent">!{ dodComponent }</option>
|
<option v-for="dodComponent in dodComponents" :value="dodComponent">!{ dodComponent }</option>
|
||||||
</select>
|
</select>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</form>
|
</form>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user