Style fix for the detailed galery view.
Release Inventarsystem / release-docker (push) Successful in 2m15s

This commit is contained in:
2026-08-17 00:19:07 +02:00
parent f6e3db9b4a
commit 41d9c0a848
+19 -14
View File
@@ -451,30 +451,35 @@
height: 100%;
}
.detail-gallery-container {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
gap: 12px;
margin: 15px 0 20px 0; /* Abstand oben und unten unter dem Titel */
display: flex;
flex-wrap: wrap;
gap: 15px;
margin: 15px 0 20px 0;
width: 100%;
align-items: center;
}
.item-image-wrapper {
position: relative;
width: 100%;
height: 130px; /* Feste Höhe verhindert das Kollabieren im Modal! */
background-color: #f8fafc;
border: 1px solid #e2e8f0;
border-radius: 8px;
overflow: hidden;
background-color: #f3f4f6;
border: 1px solid #e5e7eb;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
padding: 6px;
display: inline-flex;
align-items: center;
justify-content: center;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
}
.item-image {
width: 100%;
height: 100%;
object-fit: cover; /* Passt das Bild perfekt ein, ohne es zu verzerren */
max-width: 160px;
max-height: 200px;
width: auto;
height: auto;
display: block;
object-fit: contain;
border-radius: 4px;
}
</style>