fix(frontend): 外部アプリ設定のアプリアイコンに変な余白が入っているのを修正 (#16660)
This commit is contained in:
parent
8cfd147555
commit
a132a1d3e1
|
|
@ -12,7 +12,7 @@ SPDX-License-Identifier: AGPL-3.0-only
|
||||||
<MkFolder v-for="token in items" :key="token.id" :defaultOpen="true">
|
<MkFolder v-for="token in items" :key="token.id" :defaultOpen="true">
|
||||||
<template #icon>
|
<template #icon>
|
||||||
<img v-if="token.iconUrl" :class="$style.appIcon" :src="token.iconUrl" alt=""/>
|
<img v-if="token.iconUrl" :class="$style.appIcon" :src="token.iconUrl" alt=""/>
|
||||||
<i v-else class="ti ti-plug"/>
|
<i v-else class="ti ti-plug"></i>
|
||||||
</template>
|
</template>
|
||||||
<template #label>{{ token.name }}</template>
|
<template #label>{{ token.name }}</template>
|
||||||
<template #caption>{{ token.description }}</template>
|
<template #caption>{{ token.description }}</template>
|
||||||
|
|
@ -86,6 +86,7 @@ definePage(() => ({
|
||||||
|
|
||||||
<style lang="scss" module>
|
<style lang="scss" module>
|
||||||
.appIcon {
|
.appIcon {
|
||||||
|
display: block;
|
||||||
width: 20px;
|
width: 20px;
|
||||||
height: 20px;
|
height: 20px;
|
||||||
border-radius: 4px;
|
border-radius: 4px;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue