Improve profile view and fix app install dialog overflow on mobile

This commit is contained in:
Johannes Zellner
2025-03-17 12:33:27 +01:00
parent e83bcf0fd9
commit b3131169ad
2 changed files with 101 additions and 40 deletions

View File

@@ -163,7 +163,7 @@ defineExpose({
<template>
<Dialog ref="dialogHandle" @close="onClose()">
<div class="content" :class="{ 'step-detail': step === STEP.DETAILS, 'step-install': step === STEP.INSTALL }">
<div class="app-install-dialog-body" :class="{ 'step-detail': step === STEP.DETAILS, 'step-install': step === STEP.INSTALL }">
<div class="app-install-header">
<div class="summary">
<div class="title">{{ manifest.title }}</div>
@@ -224,7 +224,7 @@ defineExpose({
<style scoped>
.content {
.app-install-dialog-body {
max-width: 100%;
max-height: 100%;
transition: all 0.25s;