Skip to content

Commit

Permalink
fix: recent molecules max width and mobile nav bar missing links added
Browse files Browse the repository at this point in the history
  • Loading branch information
CS76 committed Sep 11, 2024
1 parent 3e9e864 commit 50dda62
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
8 changes: 6 additions & 2 deletions resources/views/livewire/header.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -116,10 +116,14 @@ class="fixed inset-y-0 right-0 z-50 w-full overflow-y-auto bg-white px-6 py-6 sm
<div class="space-y-2 py-6">
<a href="/search"
class="-mx-3 block rounded-lg px-3 py-2 text-base font-semibold leading-7 text-gray-900 hover:bg-gray-50">Search</a>
<a href="/api-documentation"
class="-mx-3 block rounded-lg px-3 py-2 text-base font-semibold leading-7 text-gray-900 hover:bg-gray-50">API</a>
<a href="/collections"
class="-mx-3 block rounded-lg px-3 py-2 text-base font-semibold leading-7 text-gray-900 hover:bg-gray-50">Collections</a>
<a href="https://steinbeck-lab.github.io/coconut/introduction.html"
class="-mx-3 block rounded-lg px-3 py-2 text-base font-semibold leading-7 text-gray-900 hover:bg-gray-50">Documentation</a>
<a href="/api-documentation"
class="-mx-3 block rounded-lg px-3 py-2 text-base font-semibold leading-7 text-gray-900 hover:bg-gray-50">REST API</a>
<a href="https://github.com/Steinbeck-Lab/coconut"
class="-mx-3 block rounded-lg px-3 py-2 text-base font-semibold leading-7 text-gray-900 hover:bg-gray-50">Codebase</a>
<a href="/about"
class="-mx-3 block rounded-lg px-3 py-2 text-base font-semibold leading-7 text-gray-900 hover:bg-gray-50">About
us</a>
Expand Down
2 changes: 1 addition & 1 deletion resources/views/livewire/recent-molecules.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ class="inline-flex items-center rounded-md bg-secondary-dark px-3 py-2 text-sm f
</div>
<div>
<div class="px-6">
<div class="mx-auto grid mt-6 gap-5 lg:max-w-none md:grid-cols-3 lg:grid-cols-5">
<div class="mx-auto grid mt-6 gap-5 lg:max-w-none md:grid-cols-3 lg:grid-cols-5 grid-cols-1">
@foreach ($molecules as $molecule)
<livewire:molecule-card :key="$molecule->identifier" :molecule="$molecule" />
@endforeach
Expand Down

0 comments on commit 50dda62

Please sign in to comment.