fix. scroll position 변수명 수정

Made-with: Cursor
This commit is contained in:
clkim
2026-03-13 11:29:32 +09:00
parent a0e3fa3887
commit 435f61ed05
5 changed files with 11 additions and 11 deletions

View File

@@ -198,10 +198,10 @@ onUnmounted(() => {
<style scoped>
.empty-game + main .lnb-wrap {
@apply mt-[var(--scroll-position,48px)];
@apply mt-[var(--scroll-stove-position,48px)];
}
.lnb-wrap {
@apply fixed top-0 right-0 mt-[calc(var(--scroll-position,48px)+64px)] py-8 pr-10 bg-[radial-gradient(100%_50%_at_100%_50%,rgba(0,0,0,0.4)_25%,rgba(0,0,0,0)_100%)] transition-transform duration-[400ms] ease-in-out z-50;
@apply fixed top-0 right-0 mt-[calc(var(--scroll-stove-position,48px)+64px)] py-8 pr-10 bg-[radial-gradient(100%_50%_at_100%_50%,rgba(0,0,0,0.4)_25%,rgba(0,0,0,0)_100%)] transition-transform duration-[400ms] ease-in-out z-50;
}
.lnb-wrap:before {
content: '';
@@ -261,9 +261,9 @@ button.is-active::after {
}
.main-promotion .lnb-wrap {
@apply mt-[calc(var(--scroll-position,48px)+64px+72px)];
@apply mt-[calc(var(--scroll-stove-position,48px)+64px+72px)];
}
.empty-game + .main-promotion .lnb-wrap {
@apply mt-[calc(var(--scroll-position,48px)+72px)];
@apply mt-[calc(var(--scroll-stove-position,48px)+72px)];
}
</style>