chore(ads): 앱 배너를 320x50 모바일 단위(임시)로, 웹은 728x90 유지
CI / build (push) Failing after 14m11s

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
ByungCheol
2026-06-28 18:29:10 +09:00
parent 29ff09a8d6
commit 4838eba9af
+4 -4
View File
@@ -100,8 +100,8 @@ watch(() => route.fullPath, () => ui.closeSidebar())
</div>
<RouterView />
</main>
<!-- 하단 내비 광고 (유료 회원 제외) -->
<AdBanner v-if="showAds" class="app-ad" />
<!-- 하단 내비 광고 (유료 회원 제외). 앱은 320x50 모바일 배너(임시) -->
<AdBanner v-if="showAds" class="app-ad" unit="DAN-qd8As3nqJjXTQKa6" :width="320" :height="50" />
<AppBottomNav class="layout-bottom" />
</div>
@@ -189,9 +189,9 @@ watch(() => route.fullPath, () => ui.closeSidebar())
background: var(--color-background);
border-top: 1px solid var(--color-border);
}
/* 광고가 있을 땐 본문 하단 여백을 광고 높이만큼 더 확보 */
/* 광고가 있을 땐 본문 하단 여백을 광고 높이(320x50 배너)만큼 더 확보 */
.layout.has-ad .layout-body {
padding-bottom: calc(56px + 96px + env(safe-area-inset-bottom, 0) + 1rem);
padding-bottom: calc(56px + 62px + env(safe-area-inset-bottom, 0) + 1rem);
}
/* 로그인 전: 사이드바 없이 단일 컬럼 — 콘텐츠가 창 중앙에 오도록 */