feat: 로딩 수정
This commit is contained in:
@@ -50,7 +50,6 @@ onMounted(() => {
|
|||||||
}
|
}
|
||||||
mountedInstance = (window as any).StoveGnb.mount('#stove-wrap', stoveGnbOptions)
|
mountedInstance = (window as any).StoveGnb.mount('#stove-wrap', stoveGnbOptions)
|
||||||
|
|
||||||
console.log("🚀 ~ onMounted ~ stoveGnbOptions:", stoveGnbOptions)
|
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
@@ -62,5 +61,23 @@ onBeforeUnmount(() => {
|
|||||||
})
|
})
|
||||||
</script>
|
</script>
|
||||||
<template>
|
<template>
|
||||||
<div id="stove-wrap" class="relative z-[5]" />
|
<div class="stove-gnb-new">
|
||||||
|
<div id="stove-wrap" class="relative z-[5]" />
|
||||||
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
<style scoped>
|
||||||
|
.stove-gnb-new {
|
||||||
|
@apply h-[48px];
|
||||||
|
}
|
||||||
|
[data-theme='light'] {
|
||||||
|
.stove-gnb-new {
|
||||||
|
@apply bg-white;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
[data-theme='dark'] {
|
||||||
|
.stove-gnb-new {
|
||||||
|
@apply bg-black;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
<template>
|
<template>
|
||||||
<footer id="footer" ref="footerRef" class="bg-black">
|
<footer id="footer" ref="footerRef" class="relative bg-black z-[90]">
|
||||||
<div
|
<div
|
||||||
class="inner relative max-w-7xl mx-auto px-5 md:px-10 py-4 text-[12px] text-gray-400 md:px-4 md:py-9 md:text-[12px]"
|
class="inner relative max-w-7xl mx-auto px-5 md:px-10 py-4 text-[12px] text-gray-400 md:px-4 md:py-9 md:text-[12px]"
|
||||||
>
|
>
|
||||||
@@ -206,4 +206,7 @@ const footerAgeRatingInfo = computed((): string[] => {
|
|||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style scoped>
|
<style scoped>
|
||||||
|
em {
|
||||||
|
font-style: normal;
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|||||||
@@ -8,9 +8,16 @@ onMounted(() => {
|
|||||||
|
|
||||||
<template>
|
<template>
|
||||||
<LayoutsHeader />
|
<LayoutsHeader />
|
||||||
<main id="LayoutMain" class="min-h-screen relative">
|
<AtomsLoadingSimple :is-loading="isLoading" />
|
||||||
<AtomsLoadingSimple :is-loading="isLoading" />
|
<main id="LayoutsMain">
|
||||||
<slot />
|
<slot />
|
||||||
</main>
|
</main>
|
||||||
|
|
||||||
<LayoutsFooter />
|
<LayoutsFooter />
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
<style scoped>
|
||||||
|
#LayoutsMain {
|
||||||
|
@apply relative min-h-[200px] md:min-h-[800px] z-[91];
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
|||||||
Reference in New Issue
Block a user