fix: vertically center card content with image on desktop

This commit is contained in:
2026-05-15 13:22:06 -05:00
parent f3f55fe81e
commit f958735bd2

View File

@@ -1,6 +1,6 @@
<template>
<v-card class="product-card">
<v-row align="start" class="product-card-row">
<v-row class="product-card-row">
<!-- Columna de Imagen -->
<v-col cols="12" md="4" class="image-column">
<v-img :src="product.img" class="product-img" contain></v-img>
@@ -375,7 +375,7 @@ export default {
.product-card-row {
padding: 16px;
align-items: flex-start;
align-items: center;
}
.image-column {