From 2a006cce42c7339be217cfd11f88533316082849 Mon Sep 17 00:00:00 2001 From: Matthias Mair Date: Mon, 7 Feb 2022 01:42:56 +0100 Subject: [PATCH] add new text class --- _includes/block/features.html | 2 +- _includes/block/functions.html | 2 +- assets/index.css | 4 ++++ 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/_includes/block/features.html b/_includes/block/features.html index 34c939b1..4ce1c1ab 100644 --- a/_includes/block/features.html +++ b/_includes/block/features.html @@ -4,7 +4,7 @@
-

{{ include.data.title }}

+

{{ include.data.title }}

{% if include.link %} {% assign link=include.data.link|default:include.link %} {% include fnc/learn_more.html %} diff --git a/_includes/block/functions.html b/_includes/block/functions.html index 06d2c889..d6772322 100644 --- a/_includes/block/functions.html +++ b/_includes/block/functions.html @@ -8,7 +8,7 @@
{% if include.data.title or include.data.text or include.data.link %}
- {% if include.data.title %}

{{ include.data.title }}

{% endif %} + {% if include.data.title %}

{{ include.data.title }}

{% endif %} {% if include.data.text %}

{{ include.data.text }}

{% endif %} {% if include.data.link and include.no_link != true %} Learn More {% include fnc/learn_more.html %} diff --git a/assets/index.css b/assets/index.css index 2917e5b6..69415f96 100644 --- a/assets/index.css +++ b/assets/index.css @@ -12,6 +12,10 @@ layout: empty @apply border-b-4 border-blue-400; } + .header-text{ + @apply sm:text-3xl text-2xl font-medium + } + .footer-link { @apply text-gray-600 hover:text-gray-800 }