2016-12-01 09:32:22 +11:00
|
|
|
<template>
|
2017-01-16 02:26:37 +11:00
|
|
|
<div class="user-profile panel panel-default base00-background">
|
2016-12-01 09:32:22 +11:00
|
|
|
<user-card-content :user="user"></user-card-content>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script src="./user_profile.js"></script>
|
2016-12-08 19:09:21 +11:00
|
|
|
|
|
|
|
<style lang="scss">
|
|
|
|
.user-profile {
|
|
|
|
flex: 2;
|
|
|
|
flex-basis: 500px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.user-info {
|
|
|
|
.following-info {
|
|
|
|
display: flex;
|
|
|
|
|
|
|
|
div {
|
|
|
|
flex: 1;
|
|
|
|
}
|
2017-02-18 18:48:35 +11:00
|
|
|
margin-top: 1em;
|
|
|
|
margin-bottom: -1.2em;
|
|
|
|
}
|
|
|
|
.muteinfo{
|
|
|
|
margin: 0.5em 0;
|
|
|
|
}
|
|
|
|
.user-screen-name {
|
|
|
|
margin-top: 0.4em;
|
2016-12-08 19:09:21 +11:00
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|