ENH - refine App Store experience

This commit is contained in:
smx.pusha
2026-08-16 19:22:56 +02:00
parent 77dd50a900
commit 42e8180ebe
11 changed files with 652 additions and 424 deletions
+12 -1
View File
@@ -132,7 +132,10 @@ function updateActivePreview(): void {
<button
type="button"
class="store-detail__action"
:class="{ 'store-detail__action--icon': action !== 'open' }"
:class="{
'store-detail__action--icon': action === 'installing',
'store-detail__action--get': action === 'get',
}"
:disabled="action === 'installing'"
@click="emit('action')"
>
@@ -389,6 +392,14 @@ function updateActivePreview(): void {
background: transparent;
}
.store-detail__hero .store-detail__action--get {
min-width: 54px;
min-height: 30px;
height: 30px;
padding: 0 10px;
font-size: 10px;
}
.store-detail__facts {
display: grid;
grid-template-columns: repeat(3, minmax(0, 1fr));