amend font sizes

This commit is contained in:
María
2025-09-16 15:39:30 +02:00
committed by María
parent bdbccbb8fa
commit 22ff72f4a8
15 changed files with 75 additions and 79 deletions

View File

@@ -1,6 +1,6 @@
<template>
<div
class="flex flex-col rounded-3xl border-4 border-white min-h-68 max-h-full max-w-80 sm:max-w-full"
class="flex flex-col rounded-3xl border-4 border-white min-h-56 max-h-full max-w-80 sm:max-w-full"
:class="{
'bg-consumo-extra-light': color === 'consumo',
'bg-iguales-extra-light': color === 'iguales',
@@ -9,9 +9,9 @@
'bg-foro-extra-light': color === 'foro',
'bg-ods-extra-light': color === 'ods',
}">
<div class="flex flex-col gap-2 bg-white px-6 py-8 rounded-b-xl mt-14 min-h-56">
<h4 class="text-5.5 font-semibold uppercase">{{ title }}</h4>
<p class="text-base" v-html="description"></p>
<div class="flex flex-col gap-2 bg-white px-6 py-8 rounded-b-xl mt-14 min-h-48">
<h4 class="font-semibold uppercase">{{ title }}</h4>
<p class="text-base-custom" v-html="description"></p>
</div>
</div>
</template>