aboutsummaryrefslogtreecommitdiff
path: root/src/components/notifications/notifications.scss
blob: 1257e7511e7cf0a1ec77c51895b2804b2f5ee8dd (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
.notification {
  padding: 0.5em;
  padding-left: 1em;
  display: flex;
  border-bottom: 1px solid silver;

  .text {
    h1 {
      margin: 0;
      padding: 0;
      font-size: 1em;
    }

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

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

  &:last-child {
    border: none
  }
}