Browse Source

修改需求

bill 3 năm trước cách đây
mục cha
commit
5ec7294e7b
1 tập tin đã thay đổi với 8 bổ sung1 xóa
  1. 8 1
      src/views/tagging/index.vue

+ 8 - 1
src/views/tagging/index.vue

@@ -12,6 +12,7 @@
       <template #icon>
         <ui-icon 
           ctrl
+          :class="{active: showSearch}"
           type="search" 
           @click="showSearch = !showSearch" 
           style="margin-right: 10px"
@@ -102,4 +103,10 @@ const fixedTagging = async (tagging: Tagging) => {
 
 const selectTagging = ref<Tagging | null>(null)
 useViewStack(autoSaveTaggings)
-</script>
+</script>
+
+<style scoped>
+  .active {
+    color: var(--color-main-normal) !important;
+  }
+</style>