Fix market info sec in small screens
This commit is contained in:
@@ -9,8 +9,8 @@
|
|||||||
v-html="main.content"
|
v-html="main.content"
|
||||||
></div>
|
></div>
|
||||||
</div>
|
</div>
|
||||||
<div class="flex flex-col my-1 px-1 w-1/2 overflow-hidden">
|
<div class="flex flex-col my-1 px-1 lg:w-1/2 overflow-hidden">
|
||||||
<g-image :src="mainItem.image" class="w-3/4 mx-auto " />
|
<g-image :src="mainItem.image" class="w-3/4 mx-auto" />
|
||||||
<div class="flex-1 bg-white p-6 flex flex-col justify-between">
|
<div class="flex-1 bg-white p-6 flex flex-col justify-between">
|
||||||
<div class="flex-1">
|
<div class="flex-1">
|
||||||
<div
|
<div
|
||||||
@@ -21,31 +21,29 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="my-1 px-1 w-1/2 overflow-hidden">
|
<!-- Column Content -->
|
||||||
<!-- Column Content -->
|
<div class="flex my-14 mx-5" v-for="info in marketInfo" :key="info">
|
||||||
<div class="flex my-14 mx-5" v-for="info in marketInfo" :key="info">
|
<div class="flex-shrink-0">
|
||||||
<div class="flex-shrink-0">
|
<div
|
||||||
<div
|
class="
|
||||||
class="
|
flex
|
||||||
flex
|
items-center
|
||||||
items-center
|
justify-center
|
||||||
justify-center
|
h-24
|
||||||
h-24
|
w-24
|
||||||
w-24
|
rounded-md
|
||||||
rounded-md
|
text-white
|
||||||
text-white
|
"
|
||||||
"
|
>
|
||||||
>
|
<g-image :src="info.image" class="w-full" />
|
||||||
<g-image :src="info.image" class="w-full" />
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div class="ml-4">
|
|
||||||
<div
|
|
||||||
class="mt-4 lg:text-2xl max-w-md leading-6 text-gray-900"
|
|
||||||
v-html="info.content"
|
|
||||||
></div>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
<div class="ml-4">
|
||||||
|
<div
|
||||||
|
class="mt-4 lg:text-2xl max-w-md leading-6 text-gray-900"
|
||||||
|
v-html="info.content"
|
||||||
|
></div>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|||||||
Reference in New Issue
Block a user