AppCatalog: avoid text wrapping under app logo

This commit is contained in:
axolotle 2023-01-18 11:20:47 +01:00
parent 279a6efa41
commit d4c23d96f2

View file

@ -73,9 +73,10 @@
tabindex="0" :aria-posinset="i + 1" :aria-setsize="filteredApps.length"
no-body class="app-card"
>
<b-card-body>
<b-card-body class="d-flex">
<b-img v-if="app.logo_hash" class="app-logo rounded" :src="`./applogos/${app.logo_hash}.png`" />
<div>
<b-card-title :id="`${app.id}-title`" class="d-flex mb-2">
<b-link :to="{ name: 'app-install', params: { id: app.id }}" class="card-link">
{{ app.manifest.name }}
@ -107,6 +108,7 @@
<icon iname="warning" /> {{ $t('orphaned') }}
</span>
</b-card-text>
</div>
</b-card-body>
</b-card>
</card-deck-feed>
@ -459,7 +461,7 @@ export default {
background-color: $gray-200;
.app-logo {
float: left;
align-self: flex-start;
background-color: white;
max-width: 91px;
margin-right: 1rem;