mirror of
https://github.com/andatoshiki/toshiki-notebook.git
synced 2026-06-06 00:46:29 +00:00
29 lines
584 B
Vue
29 lines
584 B
Vue
<template>
|
|
<div class="shareCard">
|
|
<h1 class="title">
|
|
<span>ようこそ👋、安田俊樹です!</span>
|
|
</h1>
|
|
<p class="description">💖 世界一番可愛いの魔法少女安田俊樹!</p>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts" setup></script>
|
|
<style scoped>
|
|
.shareCard {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
padding: 0 15px;
|
|
text-align: center;
|
|
}
|
|
.title {
|
|
display: flex;
|
|
align-items: center;
|
|
font-size: 2.2em;
|
|
font-weight: bold;
|
|
}
|
|
.description {
|
|
margin: 1em 0;
|
|
}
|
|
</style>
|