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
| @import '../../conf/vars';
| .user-info {
| &-main,
| &-name,
| &-info {
| display: flex;
| flex-flow: column nowrap;
| justify-content: center;
| align-items: center;
| }
| &-main {
| height: 186px;
| background-position: center;
| background-size: cover;
| background-color: $color;
| }
| &-avatar {
| width: 64px;
| height: 64px;
| border-radius: 50%;
| border: 4px solid white;
| box-sizing: content-box;
| }
| &-name {
| font-size: 18px;
| padding: 8px 0;
| color: white;
| font-weight: bold;
| }
| &-info {
| font-size: 16px;
| color: #eee;
| }
| }
|
|