aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/menu/avatar-notification.component.scss
diff options
context:
space:
mode:
Diffstat (limited to 'client/src/app/menu/avatar-notification.component.scss')
-rw-r--r--client/src/app/menu/avatar-notification.component.scss17
1 files changed, 12 insertions, 5 deletions
diff --git a/client/src/app/menu/avatar-notification.component.scss b/client/src/app/menu/avatar-notification.component.scss
index 807385022..e785db788 100644
--- a/client/src/app/menu/avatar-notification.component.scss
+++ b/client/src/app/menu/avatar-notification.component.scss
@@ -3,7 +3,7 @@
3 3
4/deep/ { 4/deep/ {
5 .popover-notifications.popover { 5 .popover-notifications.popover {
6 max-width: 400px; 6 max-width: none;
7 7
8 .popover-body { 8 .popover-body {
9 padding: 0; 9 padding: 0;
@@ -11,9 +11,8 @@
11 font-family: $main-fonts; 11 font-family: $main-fonts;
12 overflow-y: auto; 12 overflow-y: auto;
13 max-height: 500px; 13 max-height: 500px;
14 min-width: 200px; 14 width: 400px;
15 box-shadow: 0 6px 14px rgba(0, 0, 0, 0.30); 15 box-shadow: 0 6px 14px rgba(0, 0, 0, 0.30);
16 overflow-y: auto;
17 16
18 .notifications-header { 17 .notifications-header {
19 display: flex; 18 display: flex;
@@ -42,7 +41,7 @@
42 justify-content: center; 41 justify-content: center;
43 font-weight: $font-semibold; 42 font-weight: $font-semibold;
44 color: var(--mainForegroundColor); 43 color: var(--mainForegroundColor);
45 height: 30px; 44 padding: 7px 0;
46 } 45 }
47 } 46 }
48 } 47 }
@@ -73,7 +72,7 @@
73 justify-content: center; 72 justify-content: center;
74 73
75 background-color: var(--mainColor); 74 background-color: var(--mainColor);
76 color: var(--mainBackgroundColor); 75 color: var(#fff);
77 font-size: 10px; 76 font-size: 10px;
78 font-weight: $font-semibold; 77 font-weight: $font-semibold;
79 78
@@ -82,3 +81,11 @@
82 height: 15px; 81 height: 15px;
83 } 82 }
84} 83}
84
85@media screen and (max-width: $mobile-view) {
86 /deep/ {
87 .popover-notifications.popover .popover-body {
88 width: 400px;
89 }
90 }
91}