Browse Source

Merge branch 'main' of https://github.com/automaapp/automa into migrate-mv3

Ahmad Kholid 1 year ago
parent
commit
1c7b15f265

+ 2 - 2
src/assets/css/tailwind.css

@@ -37,7 +37,7 @@ html.dark {
 }
 
 body, :host {
-  font-family: 'Inter var' !important;
+  font-family: 'Inter var', sans-serif !important;
   font-size: 16px !important;
   font-feature-settings: 'cv02', 'cv03', 'cv04', 'cv11';
   @apply bg-gray-50 dark:bg-gray-900 leading-normal;
@@ -131,4 +131,4 @@ pre {
 
 .input-label {
   @apply ml-1 text-sm text-gray-600 dark:text-gray-200;
-}
+}

+ 2 - 2
src/components/newtab/workflow/edit/EditInteractionBase.vue

@@ -29,11 +29,11 @@
         />
       </div>
       <edit-autocomplete v-if="!hideSelector" class="mb-1">
-        <ui-input
+        <ui-textarea
           v-if="!hideSelector"
           :model-value="data.selector"
           :placeholder="t('workflow.blocks.base.selector')"
-          autocomplete="off"
+          autoresize
           class="w-full"
           @change="updateData({ selector: $event })"
         />

+ 1 - 1
src/components/ui/UiExpand.vue

@@ -31,7 +31,7 @@ import { watch, ref } from 'vue';
 const props = defineProps({
   modelValue: {
     type: Boolean,
-    default: false,
+    default: true,
   },
   panelClass: {
     type: String,

+ 0 - 1
src/components/ui/UiTextarea.vue

@@ -5,7 +5,6 @@
     ref="textarea"
     :value="modelValue"
     class="ui-textarea ui-input bg-input w-full rounded-lg px-4 py-2 transition"
-    :class="{ 'overflow-hidden resize-none': autoresize }"
     @input="emitValue"
     @keyup="$emit('keyup', $event)"
     @keydown="$emit('keydown', $event)"