feat. header 컴포넌트 반응형 제작

This commit is contained in:
clkim
2025-10-01 11:23:13 +09:00
parent 5f140aced1
commit 517d2b233b
17 changed files with 514 additions and 107 deletions

View File

@@ -57,7 +57,7 @@ watchEffect(() => {
</script>
<template>
<main>
<main class="main">
<template
v-for="(template, index) in visibleTemplates"
:key="template.template_code ?? index"
@@ -70,3 +70,9 @@ watchEffect(() => {
</template>
</main>
</template>
<style scoped>
.main {
@apply pt-[48px] md:pt-[64px];
}
</style>