updpdate font size at token

This commit is contained in:
2021-09-20 14:57:07 +02:00
parent a7bb04d934
commit 943c83356d
2 changed files with 9 additions and 8 deletions

View File

@@ -4,11 +4,12 @@
<h1 <h1
class=" class="
text-md text-md
lg:text-6xl lg:text-5xl
text-gray-900 text-gray-900
font-bold font-bold
sm:text-9xl sm:text-9xl
leading-tight leading-tight
lg:max-w-2xl
" "
> >
{{ main.title }} {{ main.title }}
@@ -18,12 +19,12 @@
v-html="main.content" v-html="main.content"
></div> ></div>
</div> </div>
<div class="flex flex-col my-1 px-1 lg:w-1/2 overflow-hidden"> <div class="flex flex-col my-1 lg:px-4 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
class="mt-3 text-lg lg:text-2xl leading-tight text-gray-800" class="mt-3 text-lg lg:text-xl leading-tight text-gray-800"
v-html="mainItem.content" v-html="mainItem.content"
></div> ></div>
</div> </div>
@@ -31,14 +32,14 @@
</div> </div>
<!-- Column Content --> <!-- Column Content -->
<div class="flex flex-col my-1 px-1 lg:w-1/2 overflow-hidden"> <div class="flex flex-col my-1 px-4 lg:w-1/2 overflow-hidden">
<div class="flex my-10" v-for="info in marketInfo" :key="info.id"> <div class="flex my-10" v-for="info in marketInfo" :key="info.id">
<div class="flex-shrink-0"> <div class="flex-shrink-0">
<g-image :src="info.image" class="h-24 w-24" /> <g-image :src="info.image" class="h-28 w-28" />
</div> </div>
<div class="ml-4"> <div class="ml-4">
<div <div
class="mt-5 text-xl leading-6 text-gray-900" class="mt-5 lg:mx-10 text-xl leading-6 text-gray-900"
v-html="info.content" v-html="info.content"
></div> ></div>
</div> </div>

View File

@@ -360,10 +360,10 @@
<div class="w-1/2 mx-auto px-2 self-center"> <div class="w-1/2 mx-auto px-2 self-center">
<g-image :src="img" :alt="altImg" /> <g-image :src="img" :alt="altImg" />
</div> </div>
<h2 class="lg:text-8xl uppercase mb-6 mt-20 leading-none font-heading"> <h2 class="text-8xl uppercase mb-6 mt-20 leading-none font-heading">
{{ title }} {{ title }}
</h2> </h2>
<div class="mb-8 text-2xl leading-relaxed" v-html="excerpt"></div> <div class="mb-8 text-xl leading-relaxed" v-html="excerpt"></div>
</div> </div>
</div> </div>