product-card
This commit is contained in:
22
pages/product/[id].vue
Normal file
22
pages/product/[id].vue
Normal file
@@ -0,0 +1,22 @@
|
||||
<template>
|
||||
<div class="product">
|
||||
<ProductImages />
|
||||
<ProductDescription />
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script setup lang="ts">
|
||||
</script>
|
||||
|
||||
<style lang="scss">
|
||||
.product {
|
||||
width: 100%;
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
|
||||
@media (max-width: 768px) {
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
Reference in New Issue
Block a user