2016-11-30 22:32:22 +00:00
|
|
|
<template>
|
2017-01-15 15:26:37 +00:00
|
|
|
<div class="user-profile panel panel-default base00-background">
|
2016-11-30 22:32:22 +00:00
|
|
|
<user-card-content :user="user"></user-card-content>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script src="./user_profile.js"></script>
|
2016-12-08 08:09:21 +00:00
|
|
|
|
|
|
|
<style lang="scss">
|
|
|
|
.user-profile {
|
|
|
|
flex: 2;
|
|
|
|
flex-basis: 500px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.user-info {
|
2017-02-18 13:48:27 +00:00
|
|
|
.user-interactions {
|
2016-12-08 08:09:21 +00:00
|
|
|
display: flex;
|
2017-02-18 13:48:27 +00:00
|
|
|
flex-flow: row wrap;
|
2017-02-18 17:58:16 +00:00
|
|
|
justify-content: center;
|
2016-12-08 08:09:21 +00:00
|
|
|
|
|
|
|
div {
|
|
|
|
flex: 1;
|
|
|
|
}
|
2017-02-18 13:48:27 +00:00
|
|
|
margin-top: 0.5em;
|
2017-02-18 07:48:35 +00:00
|
|
|
margin-bottom: -1.2em;
|
2017-02-18 13:48:27 +00:00
|
|
|
|
|
|
|
.following {
|
2017-02-18 13:49:27 +00:00
|
|
|
font-size: 14px;
|
|
|
|
flex: 0 0 100%;
|
|
|
|
margin-bottom: 0.5em;
|
2017-02-18 13:48:27 +00:00
|
|
|
}
|
|
|
|
|
2017-02-18 13:49:27 +00:00
|
|
|
.mute {
|
2017-02-18 17:58:16 +00:00
|
|
|
max-width: 200px;
|
2017-02-18 13:49:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.follow {
|
2017-02-18 17:58:16 +00:00
|
|
|
max-width: 200px;
|
2017-02-18 13:49:27 +00:00
|
|
|
}
|
2017-02-18 13:48:27 +00:00
|
|
|
|
2017-02-18 13:49:27 +00:00
|
|
|
button {
|
|
|
|
width: 80%;
|
|
|
|
height: 100%;
|
|
|
|
border: 1px solid;
|
|
|
|
}
|
2017-02-18 07:48:35 +00:00
|
|
|
}
|
|
|
|
.user-screen-name {
|
|
|
|
margin-top: 0.4em;
|
2016-12-08 08:09:21 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|