diff options
| author | syuilo <Syuilotan@yahoo.co.jp> | 2023-01-05 21:04:56 +0900 |
|---|---|---|
| committer | syuilo <Syuilotan@yahoo.co.jp> | 2023-01-05 21:04:56 +0900 |
| commit | 047262ab20c83232c01b102961dfdc299073ea1a (patch) | |
| tree | df65326afd1c3b794dbe124a55b33f4380406733 /packages/frontend/src/pages/settings/plugin.vue | |
| parent | :art: (diff) | |
| download | misskey-047262ab20c83232c01b102961dfdc299073ea1a.tar.gz misskey-047262ab20c83232c01b102961dfdc299073ea1a.tar.bz2 misskey-047262ab20c83232c01b102961dfdc299073ea1a.zip | |
refactor
Diffstat (limited to 'packages/frontend/src/pages/settings/plugin.vue')
| -rw-r--r-- | packages/frontend/src/pages/settings/plugin.vue | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/packages/frontend/src/pages/settings/plugin.vue b/packages/frontend/src/pages/settings/plugin.vue index 905efd833d..3ff1d64b8e 100644 --- a/packages/frontend/src/pages/settings/plugin.vue +++ b/packages/frontend/src/pages/settings/plugin.vue @@ -1,23 +1,23 @@ <template> -<div class="_formRoot"> +<div class="_autoGap"> <FormLink to="/settings/plugin/install"><template #icon><i class="ti ti-download"></i></template>{{ i18n.ts._plugin.install }}</FormLink> <FormSection> <template #label>{{ i18n.ts.manage }}</template> - <div v-for="plugin in plugins" :key="plugin.id" class="_formBlock _panel" style="padding: 20px;"> + <div v-for="plugin in plugins" :key="plugin.id" class="_panel _autoGap_half" style="padding: 20px;"> <span style="display: flex;"><b>{{ plugin.name }}</b><span style="margin-left: auto;">v{{ plugin.version }}</span></span> - <FormSwitch class="_formBlock" :model-value="plugin.active" @update:model-value="changeActive(plugin, $event)">{{ i18n.ts.makeActive }}</FormSwitch> + <FormSwitch :model-value="plugin.active" @update:model-value="changeActive(plugin, $event)">{{ i18n.ts.makeActive }}</FormSwitch> - <MkKeyValue class="_formBlock"> + <MkKeyValue> <template #key>{{ i18n.ts.author }}</template> <template #value>{{ plugin.author }}</template> </MkKeyValue> - <MkKeyValue class="_formBlock"> + <MkKeyValue> <template #key>{{ i18n.ts.description }}</template> <template #value>{{ plugin.description }}</template> </MkKeyValue> - <MkKeyValue class="_formBlock"> + <MkKeyValue> <template #key>{{ i18n.ts.permission }}</template> <template #value>{{ plugin.permission }}</template> </MkKeyValue> |