aboutsummaryrefslogtreecommitdiff
path: root/src/components/user_profile/user_profile.vue
blob: 962318e4a859558d7ef19830236ce9353d6ab6a5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<template>
  <div class="user-profile panel panel-default base00-background">
    <user-card-content :user="user"></user-card-content>
  </div>
</template>

<script src="./user_profile.js"></script>

<style lang="scss">
 .user-profile {
   flex: 2;
   flex-basis: 500px;
 }

 .user-info {
     .following-info {
         display: flex;

         div {
             flex: 1;
         }
         margin-top: 1em;
         margin-bottom: -1.2em;
     }
     .muteinfo{
     	margin: 0.5em 0;
     }
     .user-screen-name {
     	margin-top: 0.4em;
     }
 }
</style>