forked from nsjcy/frontEnd/nsjcy

liuwh
2020-06-09 69155bb24070e22789fceb34d14fe3311874126f
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;
  }
}