aboutsummaryrefslogtreecommitdiff
path: root/src/components/notifications/notifications.scss
blob: 65efb103040e70addd515e4f24c6abc17e6ac87a (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
@import '../../_variables.scss';
.notification {
  border-bottom: 1px solid silver;

  .notification-base {
      padding: 0.4em 0 0 0.7em;
      display: flex;
      .avatar {
          padding-top: 0.3em;
          width: 32px;
          height: 32px;
          border-radius: 50%;
      }

      .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;
          }
      }
  }

  &:last-child {
    border: none
  }
}