This commit is contained in:
Henry Jameson 2025-11-25 23:18:10 +02:00
commit b519c0f3aa
3 changed files with 4 additions and 3 deletions

View file

@ -8,7 +8,7 @@
class="label" class="label"
:class="{ faint: !present || disabled }" :class="{ faint: !present || disabled }"
> >
{{ label }} {{ label || $t('settings.style.themes3.editor.opacity') }}
</label> </label>
<Checkbox <Checkbox
v-if="typeof fallback !== 'undefined'" v-if="typeof fallback !== 'undefined'"

View file

@ -6,8 +6,9 @@
margin-bottom: 0.5em; margin-bottom: 0.5em;
.label { .label {
display: inline-block;
margin-right: 0.5em; margin-right: 0.5em;
flex: 1 1 0; flex: 1 1 auto;
line-height: 2; line-height: 2;
min-height: 2em; min-height: 2em;
} }

View file

@ -380,8 +380,8 @@
key="variables" key="variables"
:label="$t('settings.style.themes3.editor.variables_tab')" :label="$t('settings.style.themes3.editor.variables_tab')"
:model-value="virtualDirectives" :model-value="virtualDirectives"
@update:model-value="updateVirtualDirectives"
:full-width="true" :full-width="true"
@update:model-value="updateVirtualDirectives"
/> />
</tab-switcher> </tab-switcher>
</div> </div>