23 lines
321 B
Vue
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>
|