fix: Logo提示语改为'卡片左下角水印',Logo清晰显示(opacity:1)
Some checks failed
PR Preview / teardown-preview (pull_request) Has been skipped
Test / unit-test (push) Successful in 5s
Test / build-check (push) Successful in 4s
PR Preview / test (pull_request) Successful in 5s
PR Preview / deploy-preview (pull_request) Successful in 13s
Test / e2e-test (push) Failing after 1m35s
Some checks failed
PR Preview / teardown-preview (pull_request) Has been skipped
Test / unit-test (push) Successful in 5s
Test / build-check (push) Successful in 4s
PR Preview / test (pull_request) Successful in 5s
PR Preview / deploy-preview (pull_request) Successful in 13s
Test / e2e-test (push) Failing after 1m35s
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
@@ -1165,7 +1165,7 @@ async function saveRecipe() {
|
|||||||
.ec-logo {
|
.ec-logo {
|
||||||
height: 36px;
|
height: 36px;
|
||||||
object-fit: contain;
|
object-fit: contain;
|
||||||
opacity: 0.5;
|
opacity: 1;
|
||||||
}
|
}
|
||||||
.ec-date {
|
.ec-date {
|
||||||
font-size: 11px;
|
font-size: 11px;
|
||||||
|
|||||||
@@ -144,7 +144,7 @@
|
|||||||
<!-- Logo -->
|
<!-- Logo -->
|
||||||
<div>
|
<div>
|
||||||
<label class="form-label">🏷 Logo</label>
|
<label class="form-label">🏷 Logo</label>
|
||||||
<p style="font-size:11px;color:var(--text-light);margin-bottom:6px">卡片底部居中水印</p>
|
<p style="font-size:11px;color:var(--text-light);margin-bottom:6px">卡片左下角水印</p>
|
||||||
<div class="upload-box" @click="triggerUpload('logo')">
|
<div class="upload-box" @click="triggerUpload('logo')">
|
||||||
<img v-if="brandLogo" :src="brandLogo" class="upload-box-img" />
|
<img v-if="brandLogo" :src="brandLogo" class="upload-box-img" />
|
||||||
<span v-else class="upload-box-hint">点击上传</span>
|
<span v-else class="upload-box-hint">点击上传</span>
|
||||||
@@ -190,7 +190,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<!-- Logo left + Date right -->
|
<!-- Logo left + Date right -->
|
||||||
<div style="display:flex;justify-content:space-between;align-items:flex-end;margin-top:8px">
|
<div style="display:flex;justify-content:space-between;align-items:flex-end;margin-top:8px">
|
||||||
<img v-if="brandLogo" :src="brandLogo" style="height:18px;object-fit:contain;opacity:0.5" />
|
<img v-if="brandLogo" :src="brandLogo" style="height:18px;object-fit:contain" />
|
||||||
<span v-else></span>
|
<span v-else></span>
|
||||||
<span style="font-size:7px;color:var(--text-light);letter-spacing:0.5px">制作日期:{{ new Date().toLocaleDateString('zh-CN') }}</span>
|
<span style="font-size:7px;color:var(--text-light);letter-spacing:0.5px">制作日期:{{ new Date().toLocaleDateString('zh-CN') }}</span>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
Reference in New Issue
Block a user