Skip to content

Commit

Permalink
chore: css
Browse files Browse the repository at this point in the history
  • Loading branch information
GabDug committed Jul 12, 2024
1 parent 350fda1 commit 0a1f706
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
<h2 id="footer-heading" class="sr-only">Footer</h2>
<div class="mx-auto max-w-7xl py-12 px-4 sm:px-6 lg:py-16 lg:px-8">
<div class="md:grid md:grid-cols-3 md:gap-8">

<div class="mt-8 md:mt-0">
<h3 class="footer-title">{{APP_DISPLAY_NAME}}{% if FF_VERSION %} <span class="text-base-content text-opacity-80 text-sm font-normal"> {{ FF_VERSION }} </span>{% endif %}</h3>
<p class="mt-2 text-sm text-base-content text-opacity-70">Report, manage, escalate!</p>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
{{item.title}}
</a>
</summary>
<ul class="p-2 bg-base-200 rounded-md z-[15]">
<ul class="p-2 rounded-md z-[15]">
{% for child in item.children%}
<li><a {% if item.boost %}hx-boost="true"{% else %}hx-boost="false"{% endif %} href="{{child.url}}" class="{% if child.selected %}active{% endif %}">{{child.title}}{% if item.badge %}<span class="badge">{{child.badge}}</span>
{% endif %}</a></li>
Expand Down Expand Up @@ -48,11 +48,11 @@
{{item.title}}
</a>
</div>
<ul tabindex="0" class="dropdown-content p-2 bg-base-200 rounded-md z-[15] menu ml-0 p-2 shadow bg-base-100 rounded-box w-52">
<ul tabindex="0" class="dropdown-content p-2 rounded-md z-[15] menu ml-0 p-2 shadow bg-neutral-800 rounded-box w-52">
{% for child in item.children %}
<li class="py-1">
<a {% if item.boost %}hx-boost="true"{% else %}hx-boost="false"{% endif %} href="{{ child.url }}"
class="whitespace-nowrap {% if child.selected %}active {% endif %}">
class="whitespace-nowrap rounded-md {% if child.selected %}active{% endif %}">
{{ child.title }}
</a>
</li>
Expand Down

0 comments on commit 0a1f706

Please sign in to comment.