fix: telegram mail page use iframe show email (#564)

This commit is contained in:
Dream Hunter
2025-01-18 14:59:08 +08:00
committed by GitHub
parent 36e9c611e6
commit cf13236e7b

View File

@@ -46,7 +46,7 @@ onMounted(async () => {
<template>
<div class="center">
<n-card :bordered="false" embedded v-if="curMail.message" style="max-width: 800px; overflow: auto;">
<n-card :bordered="false" embedded v-if="curMail.message" style="max-width: 800px; height: 100%;">
<n-tag type="info">
ID: {{ curMail.id }}
</n-tag>
@@ -72,5 +72,6 @@ onMounted(async () => {
text-align: left;
place-items: center;
justify-content: center;
height: 80vh;
}
</style>