fix. utils 함수 변경, 클래스명 수정

This commit is contained in:
clkim
2025-10-31 17:33:15 +09:00
parent 83124d56eb
commit 3569ca66c8
17 changed files with 89 additions and 104 deletions

View File

@@ -173,7 +173,7 @@ onBeforeUnmount(() => {
<header class="header">
<BlocksStoveGnb class="min-h-[48px]" />
<div class="game-wrapper" :class="{ 'is-fixed': isPassedStoveGnb }">
<div class="game-wrap" :class="{ 'is-fixed': isPassedStoveGnb }">
<AtomsLocaleLink to="/brand" class="mx-auto md:hidden">
<img
:src="getImageHost(gnbData?.bi_path)"
@@ -361,11 +361,11 @@ onBeforeUnmount(() => {
.header {
@apply bg-theme-foreground text-theme-foreground-reversal relative z-[100];
}
.game-wrapper {
.game-wrap {
@apply absolute flex w-full h-[48px] items-center whitespace-nowrap px-[52px] bg-theme-foreground sm:px-[72px] md:h-16 md:pl-0 md:pr-[40px]
before:content-[''] before:absolute before:top-0 before:left-0 before:right-0 before:h-px before:bg-theme-foreground-reversal-6;
}
.game-wrapper.is-fixed {
.game-wrap.is-fixed {
@apply fixed top-0 left-0;
}
.game-logo {