yumechi-no-kuni/src/client/app/mobile/views/pages/signup.vue

27 lines
358 B
Vue
Raw Normal View History

2018-02-21 14:16:38 -06:00
<template>
<div class="signup">
<h1>%i18n:@lets-start%</h1>
2018-06-13 19:51:55 -05:00
<mk-signup/>
2018-02-21 14:16:38 -06:00
</div>
</template>
<script lang="ts">
import Vue from 'vue';
2018-06-13 19:51:55 -05:00
export default Vue.extend({});
2018-02-21 14:16:38 -06:00
</script>
<style lang="stylus" scoped>
.signup
2018-06-13 19:51:55 -05:00
padding 32px
2018-02-21 14:16:38 -06:00
margin 0 auto
max-width 500px
h1
margin 0
2018-06-14 00:52:37 -05:00
padding 8px 0 0 0
2018-02-21 14:16:38 -06:00
font-size 1.5em
2018-06-13 19:51:55 -05:00
font-weight bold
color #444
2018-02-21 14:16:38 -06:00
</style>