diff --git a/frontend/src/views/DiaryView.vue b/frontend/src/views/DiaryView.vue
index 5736e0e..f41b2c1 100644
--- a/frontend/src/views/DiaryView.vue
+++ b/frontend/src/views/DiaryView.vue
@@ -126,13 +126,13 @@
- {{ (item.predefinedActivity && item.predefinedActivity.code && item.predefinedActivity.code.trim() !== '')
- ? item.predefinedActivity.code
- : (item.predefinedActivity ? item.predefinedActivity.name : item.activity) }}
🖼️
+ {{ (item.predefinedActivity && item.predefinedActivity.code && item.predefinedActivity.code.trim() !== '')
+ ? item.predefinedActivity.code
+ : (item.predefinedActivity ? item.predefinedActivity.name : item.activity) }}
{{ item.groupActivity ? item.groupActivity.name : '' }} |
@@ -161,13 +161,13 @@
|
- {{ (groupItem.groupPredefinedActivity && groupItem.groupPredefinedActivity.code && groupItem.groupPredefinedActivity.code.trim() !== '')
- ? groupItem.groupPredefinedActivity.code
- : groupItem.groupPredefinedActivity.name }}
🖼️
+ {{ (groupItem.groupPredefinedActivity && groupItem.groupPredefinedActivity.code && groupItem.groupPredefinedActivity.code.trim() !== '')
+ ? groupItem.groupPredefinedActivity.code
+ : groupItem.groupPredefinedActivity.name }}
|
{{ groupItem.groupsGroupActivity.name }} |
@@ -1756,19 +1756,21 @@ img {
.memberImage {
position: fixed;
- max-width: 500px;
- max-height: 500px;
- top: calc(50% - 250px);
- left: calc(50% - 250px);
- border: 2px solid #555;
- box-shadow: 4px 4px 3px #aaa;
- overflow: hidden;
- padding: 3px;
+ top: 0;
+ left: 0;
+ width: 100%;
+ height: 100%;
+ background: rgba(0, 0, 0, 0.8);
+ display: flex;
+ justify-content: center;
+ align-items: center;
+ z-index: 1000;
}
.memberImage>img {
- max-width: 100%;
- max-height: 100%;
+ max-width: 90%;
+ max-height: 90%;
+ object-fit: contain;
}
.groups {
@@ -1840,7 +1842,7 @@ img {
}
.image-icon {
- margin-left: 8px;
+ margin-right: 8px;
cursor: pointer;
font-size: 16px;
opacity: 0.7;