misskey/src/web/app/desktop/tags/user-graphs.tag
2017-06-07 15:43:29 +09:00

42 lines
747 B
HTML

<mk-user-graphs>
<section>
<h1>投稿</h1>
<mk-user-posts-graph user={ opts.user }/>
</section>
<section>
<h1>フォロー/フォロワー</h1>
<mk-user-friends-graph user={ opts.user }/>
</section>
<section>
<h1>いいね</h1>
<mk-user-likes-graph user={ opts.user }/>
</section>
<style>
:scope
display block
> section
margin 16px 0
background #fff
border solid 1px rgba(0, 0, 0, 0.1)
border-radius 4px
> h1
margin 0 0 8px 0
padding 0 16px
line-height 40px
font-size 1em
color #666
border-bottom solid 1px #eee
> *:not(h1)
margin 0 auto 16px auto
</style>
<script>
this.on('mount', () => {
this.trigger('loaded');
});
</script>
</mk-user-graphs>