paxton-front/pages/index.vue
2025-09-04 20:06:44 +03:00

23 lines
321 B
Vue

<template>
<div class="card">
<ProductImages />
<ProductDescription />
</div>
</template>
<script setup lang="ts">
</script>
<style lang="scss">
.card {
width: 100%;
display: flex;
flex-direction: row;
@media (max-width: 768px) {
flex-direction: column;
align-items: center;
}
}
</style>