add no matching apps placeholder

This commit is contained in:
Girish Ramakrishnan
2025-10-01 03:12:17 +02:00
parent 33ced1c16e
commit df66a0ff38

View File

@@ -353,7 +353,7 @@ onDeactivated(() => {
<h5>{{ $t('apps.noAccess.description') }}</h5>
</div>
</div>
<div v-else-if="filteredApps.length === 0" class="empty-placeholder">
<div v-else-if="filteredApps.length === 0" class="no-matches-placeholder">
{{ $t('apps.noMatchesPlaceholder') }}
</div>
</div>
@@ -539,4 +539,9 @@ onDeactivated(() => {
margin: 10px;
}
.no-matches-placeholder {
margin-top: 50px;
text-align: center;
}
</style>