diff options
author | Zero~Informatique | 2021-07-04 02:22:39 +0200 |
---|---|---|
committer | pacien | 2021-07-04 16:32:04 +0200 |
commit | dfa1c6e2f2977c32f75c1d93d9e7eb44fbed28c0 (patch) | |
tree | 6058cc246b6546ed57b3ac7821a6ae775caf1fd5 /viewer/src/components/LdTagInput.vue | |
parent | cddf5d5c42795388dbd9058268160f1e867d64f5 (diff) | |
download | ldgallery-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.vue | 6 |
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> |