Avoid line wrap in app summary of install dialog

This commit is contained in:
Johannes Zellner
2025-07-10 12:18:20 +02:00
parent 579f5d7c8a
commit 4db5855b74
@@ -215,7 +215,8 @@ defineExpose({
<div class="app-install-header">
<div class="summary" v-if="app.manifest">
<div class="title">{{ manifest.title }}</div>
<div>{{ $t('appstore.installDialog.lastUpdated', { date: prettyDate(app.creationDate) }) }} - Version <b>{{ app.manifest.upstreamVersion }}</b> - <a :href="manifest.website" target="_blank">Website</a></div>
<div>{{ $t('appstore.installDialog.lastUpdated', { date: prettyDate(app.creationDate) }) }}</div>
<div>Version <b>{{ app.manifest.upstreamVersion }}</b> - <a :href="manifest.website" target="_blank">Website</a></div>
<div>{{ $t('app.updates.info.packageVersion') }} <b>{{ app.manifest.version }}</b></div>
<div>{{ $t('appstore.installDialog.memoryRequirement', { size: prettyBinarySize(manifest.memoryLimit || (256 * 1024 * 1024)) }) }}</div>
</div>
@@ -308,6 +309,10 @@ defineExpose({
font-size: 14px;
}
.summary > div {
text-wrap: nowrap;
}
.title {
font-size: 32px;
margin-bottom: 10px;