Skip to content

Commit

Permalink
Fix styling of script-general-settings
Browse files Browse the repository at this point in the history
Signed-off-by: Florian Hotze <florianh_dev@icloud.com>
  • Loading branch information
florian-h05 committed Feb 23, 2024
1 parent ed62965 commit 71a7a0f
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
<template>
<div>
<rule-general-settings v-if="createMode || isScriptRule" :ready="true" :rule="rule" :createMode="createMode" :inScriptEditor="true" />
<f7-block class="block-narrow">
<rule-general-settings v-if="createMode || isScriptRule" :ready="true" :rule="rule" :createMode="createMode" :inScriptEditor="true" style="margin-bottom: -15px" />
<f7-block class="block-narrow" style="margin-top: 0">
<f7-col v-if="!createMode && languages">
<f7-list inline-labels>
<f7-list inline-labels style="margin-top: 0">
<template v-if="module && !isScriptRule">
<f7-list-input :label="scriptType + ' Title'" type="text" :value="module.label" :placeholder="suggestedModuleTitle(module, moduleType)" @input="$set(module, 'label', $event.target.value)" :disabled="!editable" :clear-button="editable" />
<f7-list-input label="Description" type="text" :value="module.description" :placeholder="suggestedModuleDescription(module, moduleType)" @input="$set(module, 'description', $event.target.value)" :disabled="!editable" :clear-button="editable" />
Expand Down

0 comments on commit 71a7a0f

Please sign in to comment.