aboutsummaryrefslogtreecommitdiff
path: root/src/components/notifications/notifications.scss
blob: 517afeaad8b8d6b05289c70af5f10e1c449a992a (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
@import '../../_variables.scss';
.notification {
  padding: 0.4em 0 0 0.7em;
  display: flex;
  border-bottom: 1px solid silver;

  .text {
    min-width: 0px;
    word-wrap: break-word;
    line-height:18px;

    .icon-retweet {
      color: $green;
    }

    .icon-reply {
      color: $blue;
    }

    h1 {
      margin: 0 0 0.3em;
      padding: 0;
      font-size: 1em;
      line-height:20px;
    }

    padding: 0.3em 0.8em 0.5em;
    p {
      margin: 0;
      margin-top: 0;
      margin-bottom: 0.3em;
    }
  }

  .avatar {
    padding-top: 0.3em;
    width: 32px;
    height: 32px;
    border-radius: 50%;
  }

  &:last-child {
    border: none
  }
}