fix: center image on product view

This commit is contained in:
2025-12-08 03:58:59 +03:00
parent a5e91dd488
commit dc198c63b7

View File

@@ -346,3 +346,11 @@ onMounted(async () => {
window.addEventListener('popstate', onPopState);
});
</script>
<style scoped>
.swiper-slide {
display: flex;
justify-content: center;
align-items: center;
}
</style>