diff --git a/frontend/src/components/canvas/components/Editor/ComponentWrapper.vue b/frontend/src/components/canvas/components/Editor/ComponentWrapper.vue index 83ce904b80..c0d6701949 100644 --- a/frontend/src/components/canvas/components/Editor/ComponentWrapper.vue +++ b/frontend/src/components/canvas/components/Editor/ComponentWrapper.vue @@ -9,6 +9,7 @@ :is="config.component" v-if="config.type==='custom'" :id="'component' + config.id" + class="component-custom" :style="getComponentStyleDefault(config.style)" :out-style="config.style" :element="config" @@ -99,4 +100,9 @@ export default { .gap_class{ padding:3px; } +.component-custom { + outline: none; + width: 100%; + height: 100%; +} diff --git a/frontend/src/components/widget/DeWidget/DeDate.vue b/frontend/src/components/widget/DeWidget/DeDate.vue index 0c46b2c6da..3819591e05 100644 --- a/frontend/src/components/widget/DeWidget/DeDate.vue +++ b/frontend/src/components/widget/DeWidget/DeDate.vue @@ -8,6 +8,7 @@ :start-placeholder="options.attrs.startPlaceholder" :end-placeholder="options.attrs.endPlaceholder" :placeholder="options.attrs.placeholder" + style="min-height: 36px;" @change="dateChange" /> diff --git a/frontend/src/components/widget/DeWidget/DeInputSearch.vue b/frontend/src/components/widget/DeWidget/DeInputSearch.vue index a0a0bf503f..71dc57d33c 100644 --- a/frontend/src/components/widget/DeWidget/DeInputSearch.vue +++ b/frontend/src/components/widget/DeWidget/DeInputSearch.vue @@ -2,7 +2,7 @@