fixing product layout

This commit is contained in:
2025-05-08 20:54:19 -04:00
parent f5f6e52c4b
commit 7b4069212c
2 changed files with 38 additions and 9 deletions

View File

@@ -23,6 +23,33 @@
max-height: 200px;
margin: 10px 0;
}
/* Product image styles for consistent display */
.product-image-container {
width: 100px;
height: 120px;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto;
overflow: hidden;
}
.product-image {
max-width: 100px;
max-height: 120px;
object-fit: contain;
}
/* Table styles */
.table td {
vertical-align: middle;
}
/* Ensure consistent height for table rows */
.table tr {
height: 150px;
}
</style>
{% block extra_css %}{% endblock %}
</head>