Skip to content
This repository has been archived by the owner on Jun 22, 2024. It is now read-only.

Commit

Permalink
fix flex issue in nav
Browse files Browse the repository at this point in the history
  • Loading branch information
Shane Robinson committed Dec 17, 2020
1 parent b6aee31 commit c0e19f1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/_includes/components/nav.njk
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<div class="px-8 md:px-16 lg:px-32">
<div class="flex justify-between h-16">
<div class="flex">
<div class="flex items-center flex-shrink-0">
<div class="flex items-center">
{# small logo hidden on md and above #}
<a aria-label="Mobile Logo" href="/" class="block md:hidden {{ colors.logoCustom.mobile or colors.logoDefault.mobile }} hover:{{ colors.logoCustom.hover or colors.logoDefault.hover }}" alt="Mobile Logo">
{% svg "logo-mobile", "fill-current w-16 hover:{{ colors.logoCustom.hover or colors.logoDefault.hover }}", "The Mobile Logo" %}
Expand Down

1 comment on commit c0e19f1

@shanerobinson
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Don't know how this flex-shrink-0 found its way there...but was throwing a fit in FF. Fixes #4

Please sign in to comment.