diff --git a/webapp/components/Dropdown.vue b/webapp/components/Dropdown.vue
index 7e4d21223..0dfff3736 100644
--- a/webapp/components/Dropdown.vue
+++ b/webapp/components/Dropdown.vue
@@ -33,7 +33,7 @@ export default {
data() {
return {
isPopoverOpen: false,
- developerNoAutoClosing: false, // stops automatic closing of menu for developer purposes: default is 'false'
+ developerNoAutoClosing: true, // stops automatic closing of menu for developer purposes: default is 'false'
}
},
computed: {
diff --git a/webapp/components/NotificationMenu/NotificationMenu.vue b/webapp/components/NotificationMenu/NotificationMenu.vue
index 14441f4cf..d777cfe5f 100644
--- a/webapp/components/NotificationMenu/NotificationMenu.vue
+++ b/webapp/components/NotificationMenu/NotificationMenu.vue
@@ -17,14 +17,14 @@
-
+
{{ $t('notifications.pageLink') }}
-
+
{{ $t('notifications.markAllAsRead') }}
@@ -148,11 +148,11 @@ export default {
.notifications-link-container {
background-color: $background-color-softer-active;
justify-content: center;
- bottom: 0;
- left: 0;
- right: 0;
- height: 62px;
padding: $space-x-small;
- flex-direction: column;
+ flex-direction: row;
+}
+.notifications-link-container-item {
+ justify-content: center;
+ display: flex;
}