Fix muted text in postinstall dialog

This commit is contained in:
Johannes Zellner
2025-08-18 09:57:03 +02:00
parent e1a7056ef8
commit eb10d0d8d0

View File

@@ -38,8 +38,8 @@ defineExpose({
<div class="app-info-header">
<img :src="app.iconUrl" onerror="this.onerror=null;this.src='img/appicon_fallback.png'" class="app-info-icon"/>
<div class="app-info-title">
{{ app.manifest.title }}<br/>
<span class="text-muted text-small">{{ $t('app.appInfo.package') }} <a :href="`/#/appstore/${app.manifest.id}?version=${app.manifest.version}`">v{{ app.manifest.version }}</a> </span>
<h2>{{ app.manifest.title }}</h2>
<span class="text-small">{{ $t('app.appInfo.package') }} <a :href="`/#/appstore/${app.manifest.id}?version=${app.manifest.version}`">v{{ app.manifest.version }}</a> </span>
<br/>
<span v-if="app.manifest.documentationUrl" class="text-small"><a target="_blank" :href="app.manifest.documentationUrl">{{ $t('app.docsAction') }}</a> </span>
<br/>
@@ -72,6 +72,11 @@ defineExpose({
margin-left: 15px;
}
.app-info-title > h2 {
margin-top: 0;
margin-bottom: 0;
}
.app-info-icon {
width: 64px;
height: 64px;