Skip to content

Commit 79758af

Browse files
committed
fix(client): resize custom devtools logo size
1 parent 25ef3b5 commit 79758af

File tree

1 file changed

+2
-2
lines changed
  • packages/applet/src/modules/custom-inspector/components

1 file changed

+2
-2
lines changed

packages/applet/src/modules/custom-inspector/components/Home.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,9 @@ function onImageLoadError() {
2424
<!-- Banner -->
2525
<div flex="~ col" mt-20 items-center>
2626
<div flex="~" mt--10 items-center justify-center>
27-
<span>
27+
<span class="mr-1">
2828
<span v-if="!imageLoaded" class="inline-block w20" />
29-
<img v-show="imageLoaded && !imageLoadedError" :src="state.logo" :alt="`${state.label} Logo`" class="inline-block w20" @error="onImageLoadError" @load="onImageLoad">
29+
<img v-show="imageLoaded && !imageLoadedError" :src="state.logo" :alt="`${state.label} Logo`" class="inline-block h16" @error="onImageLoadError" @load="onImageLoad">
3030
<span v-if="imageLoadedError" class="mr2 inline-block min-w-20 text-center text-10 font-600">{{ state.label }}</span>
3131
</span>
3232
<span>

0 commit comments

Comments
 (0)