Fixed an issue with the margins of the filters on the users page.

This commit is contained in:
ajdj100
2023-08-14 22:40:32 -04:00
parent c8e8988970
commit 97daeff761

View File

@@ -85,7 +85,7 @@ export default {
<h1>Members</h1> <h1>Members</h1>
<div id="searchRow"> <div id="searchRow">
<input type="text" v-model="search" placeholder="Search..." v-on:input="console.log('hello')" /> <input type="text" v-model="search" placeholder="Search..." v-on:input="console.log('hello')" class="mx-2" />
<div id="dropdownWrapper"> <div id="dropdownWrapper">
<Listbox v-model="unitFilter" class="w-32 mx-2"> <Listbox v-model="unitFilter" class="w-32 mx-2">
@@ -135,7 +135,7 @@ export default {
</Listbox> </Listbox>
<button @click="resetFilters()" <button @click="resetFilters()"
class="bg-gray-dark hover:bg-blue text-white transition-colors duration-0.5s rounded-md px-5">Clear class="bg-gray-dark hover:bg-blue text-white transition-colors duration-0.5s rounded-md px-5 mx-2">Clear
Filters</button> Filters</button>
</div> </div>
</div> </div>
@@ -180,7 +180,6 @@ export default {
} }
#dropdownWrapper { #dropdownWrapper {
margin: 0 15px;
display: flex; display: flex;
} }