Files
web-temp/layers/components/layouts/StoveHeader.vue
2026-01-13 15:51:10 +09:00

14 lines
255 B
Vue

<script setup lang="ts"></script>
<template>
<header class="header">
<BlocksStoveGnb class="min-h-[48px]" />
</header>
</template>
<style scoped>
.header {
@apply bg-theme-foreground text-theme-foreground-reversal relative z-[100];
}
</style>