Skip to content

Commit ef0a742

Browse files
committed
Override visualization filters items spacing
1 parent 30cc7d6 commit ef0a742

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

src/components/VisualizeData/DataVisFiltersDrawer.vue

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
<v-expansion-panel title="Sites">
1818
<v-expansion-panel-text>
1919
<v-text-field
20+
class="pb-1"
2021
clearable
2122
@click:clear="searchThing = ''"
2223
v-model="searchThing"
@@ -47,6 +48,7 @@
4748
<v-expansion-panel title="Observed Properties">
4849
<v-expansion-panel-text>
4950
<v-text-field
51+
class="pb-1"
5052
clearable
5153
@click:clear="searchObservedProperty = ''"
5254
v-model="searchObservedProperty"
@@ -76,6 +78,7 @@
7678
<v-expansion-panel title="Processing Levels">
7779
<v-expansion-panel-text>
7880
<v-text-field
81+
class="pb-1"
7982
clearable
8083
@click:clear="searchProcessingLevel = ''"
8184
v-model="searchProcessingLevel"
@@ -225,3 +228,10 @@ const { smAndDown } = useDisplay()
225228
const panels = ref([0, 1, 2])
226229
const drawer = ref(!!smAndDown)
227230
</script>
231+
232+
<style scoped>
233+
::v-deep .v-selection-control,
234+
::v-deep .v-label {
235+
align-items: start;
236+
}
237+
</style>

0 commit comments

Comments
 (0)