mirror of
https://github.com/luzhisheng/js_reverse.git
synced 2025-04-19 09:24:46 +08:00
31 lines
429 B
Vue
31 lines
429 B
Vue
<template>
|
|
<main>
|
|
<Person />
|
|
</main>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import Person from './components/Person.vue'
|
|
|
|
</script>
|
|
|
|
<style scoped>
|
|
header {
|
|
line-height: 1.5;
|
|
}
|
|
|
|
@media (min-width: 1024px) {
|
|
header {
|
|
display: flex;
|
|
place-items: center;
|
|
padding-right: calc(var(--section-gap) / 2);
|
|
}
|
|
|
|
header .wrapper {
|
|
display: flex;
|
|
place-items: flex-start;
|
|
flex-wrap: wrap;
|
|
}
|
|
}
|
|
</style>
|