aboutsummaryrefslogtreecommitdiffhomepage
path: root/app/Resources/static/themes/material/css/notifications.scss
blob: 60114ce4cd2e030d3355da9a74f5c8b2667fcddd (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
@mixin notification {
  .notifications-area {
    flex-grow: 1;

    .collection {
      margin: auto;
    }
  }

  .no-notifications {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-40%, -50%);
  }

  .view-more {
    display: block;
    margin: auto 5px 10px;
    flex: 0 1 2.5em;
  }

  .btn.notification-action-button {
    display: block;
    line-height: 25px;
    height: auto;
  }
}

.notifications-page {
  @include notification;

  .pagination {
    float: none;
    text-align: center;
    margin-top: 30px;
  }
}