aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/+account/account.component.scss
blob: c7b8f038f5318a107bf9eeb06b7b9bc987346056 (plain) (blame)
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
@import '_variables';
@import '_mixins';

.sub-menu {
  height: 160px;
  display: flex;
  flex-direction: column;
  align-items: start;

  .account {
    display: flex;
    margin-top: 20px;
    margin-bottom: 20px;

    img {
      @include avatar(80px);

      margin-right: 20px;
    }

    .account-info {
      display: flex;
      flex-direction: column;
      justify-content: center;

      .account-display-name {
        font-size: 23px;
        font-weight: $font-bold;
      }

      .account-followers {
        font-size: 15px;
      }
    }
  }

  .links {
    margin-top: 0;
    margin-bottom: 10px;

    a {
      margin-top: 0;
      margin-bottom: 0;
    }
  }
}