2024-10-31 17:55:51 +08:00

40 lines
529 B
Vue

<template>
<main>
<Person a="haha" />
</main>
</template>
<script setup lang="ts">
import Person from './components/Person.vue'
</script>
<style scoped>
header {
line-height: 1.5;
}
.logo {
display: block;
margin: 0 auto 2rem;
}
@media (min-width: 1024px) {
header {
display: flex;
place-items: center;
padding-right: calc(var(--section-gap) / 2);
}
.logo {
margin: 0 2rem 0 0;
}
header .wrapper {
display: flex;
place-items: flex-start;
flex-wrap: wrap;
}
}
</style>