diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2022-10-28 09:03:50 +0200 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2022-10-28 11:12:53 +0200 |
commit | 58d75689082a879af04be17473a871a9f1b662e3 (patch) | |
tree | b48da3ddb98ef386cc178c2db8aea53aedeba4a2 | |
parent | posts: narrower feed on mobile (diff) | |
download | jekyll-theme-58d75689082a879af04be17473a871a9f1b662e3.tar.gz jekyll-theme-58d75689082a879af04be17473a871a9f1b662e3.zip |
posts: lower title font size
It was like that before the recent redesigns; it does look better on
mobile.
-rw-r--r-- | _layouts/post.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/_layouts/post.html b/_layouts/post.html index e5d6197..1ae5ccf 100644 --- a/_layouts/post.html +++ b/_layouts/post.html @@ -10,7 +10,7 @@ layout: default {% capture date %}<p>{{ category }}{{ date }}</p>{% endcapture %} -{% capture title %}<h1>{{ page.title }}</h1>{% endcapture %} +{% capture title %}<h1><span class="font-size-90">{{ page.title }}</span></h1>{% endcapture %} {% include jekyll-theme/flex-header.html title=title right=date %} {{ content }} |