Increase font size in navbar

This commit is contained in:
Oliver Davies 2020-08-15 14:31:20 +01:00
parent 0f07d3d231
commit bed98b4f97
2 changed files with 3 additions and 3 deletions

View file

@ -17,7 +17,7 @@
<div class="flex items-center leading-snug ">
{% if site_logo %}
<a
class="font-semibold text-base text-white"
class="font-semibold text-xl text-white"
href="{{ path('<front>') }}"
rel="home"
title="{{ 'Home'|t }}"
@ -28,7 +28,7 @@
{% if site_name %}
<div>
<a
class="font-semibold text-sm text-white"
class="text-lg text-white"
href="{{ path('<front>') }}"
rel="home"
title="{{ 'Home'|t }}"

View file

@ -42,7 +42,7 @@
{% endif %}
{% for item in items %}
<li{{ item.attributes.addClass('flex flex-1 justify-center') }}>
{% set linkClasses = ['w-full flex items-center mx-4 mt-1 -mb-px py-3 px-4 block rounded text-sm text-white no-underline hover:underline focus:outline-none focus:underline md:py-1 md:px-2 md:mx-2 md:mt-0 md:mr-0'] %}
{% set linkClasses = ['w-full flex items-center mx-4 mt-1 -mb-px py-3 px-4 block rounded text-base text-white no-underline hover:underline focus:outline-none focus:underline md:py-1 md:px-2 md:mx-2 md:mt-0 md:mr-0'] %}
{% if item.in_active_trail %}
{% set linkClasses = linkClasses|merge(['cursor-default bg-blue-500 hover:border-blue-600 hover:no-underline md:bg-blue-700']) %}
{% endif %}