Mobile updates
This commit is contained in:
parent
fa13847ef9
commit
1c8e6234fe
|
@ -19,11 +19,11 @@
|
|||
|
||||
<div class="bg-red text-white">
|
||||
<div class="container mx-auto">
|
||||
<nav class="text-center">
|
||||
<a href="/" class="block sm:inline-block w-full sm:w-auto text-white hover:text-green no-underline hover:underline px-8 py-5 {{ page.url == '//' ? 'text-green' }}">Coaches</a>
|
||||
<a href="/schedule" class="block sm:inline-block w-full sm:w-auto text-white hover:text-green no-underline hover:underline px-8 py-5 {{ page.url == '/schedule' ? 'text-green' }}">Schedule</a>
|
||||
<a href="/membership" class="block sm:inline-block w-full sm:w-auto text-white hover:text-green no-underline hover:underline px-8 py-5 {{ page.url == '/membership' ? 'text-green' }}">Membership</a>
|
||||
<a href="/contact" class="block sm:inline-block w-full sm:w-auto text-white hover:text-green no-underline hover:underline px-8 py-5 {{ page.url == '/contact' ? 'text-green' }}">Contact</a>
|
||||
<nav class="sm:flex sm:justify-center text-center">
|
||||
<a href="/" class="md:text-lg block sm:inline-block w-full sm:w-auto text-white hover:text-green no-underline hover:underline px-8 py-5 {{ page.url == '//' ? 'text-green' }}">Coaches</a>
|
||||
<a href="/schedule" class="md:text-lg block sm:inline-block w-full sm:w-auto text-white hover:text-green no-underline hover:underline px-8 py-5 {{ page.url == '/schedule' ? 'text-green' }}">Schedule</a>
|
||||
<a href="/membership" class="md:text-lg block sm:inline-block w-full sm:w-auto text-white hover:text-green no-underline hover:underline px-8 py-5 {{ page.url == '/membership' ? 'text-green' }}">Membership</a>
|
||||
<a href="/contact" class="md:text-lg block sm:inline-block w-full sm:w-auto text-white hover:text-green no-underline hover:underline px-8 py-5 {{ page.url == '/contact' ? 'text-green' }}">Contact</a>
|
||||
</nav>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
<div class="{{ not loop.last ? 'mb-6' }}">
|
||||
<h3 class="mb-2">{{ day|capitalize }}</h3>
|
||||
|
||||
<ul class="list-reset ml-16">
|
||||
<ul class="list-reset ml-8 md:ml-16">
|
||||
{% for item in items %}
|
||||
<li>
|
||||
{{ item.time }} -
|
||||
|
|
Reference in a new issue