Skip to content

Commit 462dad0

Browse files
Fix search bar height
1 parent 8ad987d commit 462dad0

File tree

1 file changed

+3
-13
lines changed

1 file changed

+3
-13
lines changed

webapp/src/components/DynamicDataTableButtons.vue

Lines changed: 3 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -89,14 +89,14 @@
8989
</template>
9090
</MultiSelect>
9191

92-
<IconField class="ms-2">
92+
<IconField class="ms-2 d-flex align-items-center">
9393
<InputIcon>
9494
<font-awesome-icon icon="search" />
9595
</InputIcon>
9696
<InputText
9797
v-model="localFilters.global.value"
9898
data-testid="search-input"
99-
class="search-input"
99+
class="search-input form-control"
100100
placeholder="Search"
101101
/>
102102
</IconField>
@@ -166,7 +166,7 @@
166166
:model-value="selectedColumns"
167167
:options="availableColumns"
168168
:option-label="columnLabel"
169-
class="w-100"
169+
class="form-select"
170170
display="chip"
171171
@update:model-value="updateColumnsAndCloseModal"
172172
/>
@@ -325,13 +325,3 @@ export default {
325325
},
326326
};
327327
</script>
328-
329-
<style scoped>
330-
.search-input {
331-
height: calc(1.5em + 0.75rem + 2px);
332-
padding: 0.375rem 0.75rem;
333-
font-size: 1rem;
334-
line-height: 1.5;
335-
border-radius: 0.25rem;
336-
}
337-
</style>

0 commit comments

Comments
 (0)