fix: 💄 form switch padding

This commit is contained in:
ThatOneCalculator 2023-07-02 23:06:25 -07:00
parent f17c9837c5
commit 1f3f0720f8
No known key found for this signature in database
GPG Key ID: 8703CACD01000000
1 changed files with 14 additions and 4 deletions

View File

@ -345,12 +345,22 @@
<FormSection>
<template #label>Server Performance</template>
<FormSwitch v-model="enableServerMachineStats">
<template #label>{{ i18n.ts.enableServerMachineStats }}</template>
<FormSwitch
v-model="enableServerMachineStats"
class="_formBlock"
>
<template #label>{{
i18n.ts.enableServerMachineStats
}}</template>
</FormSwitch>
<FormSwitch v-model="enableIdenticonGeneration">
<template #label>{{ i18n.ts.enableIdenticonGeneration }}</template>
<FormSwitch
v-model="enableIdenticonGeneration"
class="_formBlock"
>
<template #label>{{
i18n.ts.enableIdenticonGeneration
}}</template>
</FormSwitch>
</FormSection>