Refactor memberService and update DiaryView styles for improved functionality and layout

This commit includes minor refactoring in the memberService to enhance error logging and improve image handling logic. Additionally, the DiaryView component has been updated to adjust the gallery dialog layout, ensuring better alignment and responsiveness of images. These changes contribute to a more robust backend and a better user experience in the frontend.
This commit is contained in:
Torsten Schulz (local)
2025-11-12 07:57:55 +01:00
parent ed15137003
commit 7b28eb04ac
2 changed files with 38 additions and 34 deletions

View File

@@ -2474,20 +2474,23 @@ h3 {
.gallery-dialog-content {
display: flex;
justify-content: center;
align-items: center;
justify-content: flex-start;
align-items: flex-start;
padding: 20px;
min-height: 60vh;
max-height: 70vh;
overflow: auto;
}
.gallery-image-wrapper {
max-width: 100%;
max-height: 100%;
max-width: none;
max-height: none;
}
.gallery-dialog-image {
display: block;
max-width: 100%;
max-height: 100%;
height: auto;
border-radius: 8px;
box-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
}