aboutsummaryrefslogtreecommitdiff
path: root/viewer/src/components/LdTagInput.vue
diff options
context:
space:
mode:
authorZero~Informatique2021-07-04 02:22:39 +0200
committerpacien2021-07-04 16:32:04 +0200
commitdfa1c6e2f2977c32f75c1d93d9e7eb44fbed28c0 (patch)
tree6058cc246b6546ed57b3ac7821a6ae775caf1fd5 /viewer/src/components/LdTagInput.vue
parentcddf5d5c42795388dbd9058268160f1e867d64f5 (diff)
downloadldgallery-dfa1c6e2f2977c32f75c1d93d9e7eb44fbed28c0.tar.gz
viewer: use CSS modules
GitHub: closes #196
Diffstat (limited to 'viewer/src/components/LdTagInput.vue')
-rw-r--r--viewer/src/components/LdTagInput.vue6
1 files changed, 3 insertions, 3 deletions
diff --git a/viewer/src/components/LdTagInput.vue b/viewer/src/components/LdTagInput.vue
index 855813a..49ea3f4 100644
--- a/viewer/src/components/LdTagInput.vue
+++ b/viewer/src/components/LdTagInput.vue
@@ -28,7 +28,7 @@
28 field="display" 28 field="display"
29 type="is-black" 29 type="is-black"
30 size="is-medium" 30 size="is-medium"
31 class="paneltag-input" 31 :class="$style.paneltagInput"
32 @typing="searchTags" 32 @typing="searchTags"
33 @add="clearCurrentFilter" 33 @add="clearCurrentFilter"
34 @remove="clearCurrentFilter" 34 @remove="clearCurrentFilter"
@@ -89,8 +89,8 @@ export default class LdTagInput extends Vue {
89} 89}
90</script> 90</script>
91 91
92<style lang="scss"> 92<style lang="scss" module>
93.paneltag-input .autocomplete .dropdown-content { 93.paneltagInput :global(.autocomplete) :global(.dropdown-content) {
94 max-height: 300px; 94 max-height: 300px;
95} 95}
96</style> 96</style>