blob: 7bed9ee0be6c3ca435c0aa9f7e33fc69420716ca (
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
<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 {
.user-interactions {
display: flex;
flex-flow: row wrap;
div {
flex: 1;
}
margin-top: 0.5em;
margin-bottom: -1.2em;
.following {
font-size: 14px;
flex: 0 0 100%;
margin-bottom: 0.5em;
}
}
.mute {
margin-right: 4em;
}
.follow {
margin-left: 4em;
}
.user-screen-name {
margin-top: 0.4em;
}
button {
width: 80%;
height: 100%;
border: 1px solid;
}
}
</style>
|