aboutsummaryrefslogtreecommitdiffhomepage
path: root/app/Resources/static/themes/material/css/notifications.scss
diff options
context:
space:
mode:
Diffstat (limited to 'app/Resources/static/themes/material/css/notifications.scss')
-rw-r--r--app/Resources/static/themes/material/css/notifications.scss38
1 files changed, 38 insertions, 0 deletions
diff --git a/app/Resources/static/themes/material/css/notifications.scss b/app/Resources/static/themes/material/css/notifications.scss
new file mode 100644
index 00000000..60114ce4
--- /dev/null
+++ b/app/Resources/static/themes/material/css/notifications.scss
@@ -0,0 +1,38 @@
1@mixin notification {
2 .notifications-area {
3 flex-grow: 1;
4
5 .collection {
6 margin: auto;
7 }
8 }
9
10 .no-notifications {
11 position: absolute;
12 top: 40%;
13 left: 50%;
14 transform: translate(-40%, -50%);
15 }
16
17 .view-more {
18 display: block;
19 margin: auto 5px 10px;
20 flex: 0 1 2.5em;
21 }
22
23 .btn.notification-action-button {
24 display: block;
25 line-height: 25px;
26 height: auto;
27 }
28}
29
30.notifications-page {
31 @include notification;
32
33 .pagination {
34 float: none;
35 text-align: center;
36 margin-top: 30px;
37 }
38}