diff options
Diffstat (limited to 'examples/view-transitions/src/components/Nav.astro')
-rw-r--r-- | examples/view-transitions/src/components/Nav.astro | 30 |
1 files changed, 16 insertions, 14 deletions
diff --git a/examples/view-transitions/src/components/Nav.astro b/examples/view-transitions/src/components/Nav.astro index c0ca3d5e3..1f7f2fec5 100644 --- a/examples/view-transitions/src/components/Nav.astro +++ b/examples/view-transitions/src/components/Nav.astro @@ -1,16 +1,18 @@ <nav class="nav border-b border-gray-800 sticky top-0 z-30 bg-gray-900"> - <div class="container mx-auto px-4 flex flex-col md:flex-row items-center justify-between px-4 py-6"> - <ul class="flex flex-col md:flex-row items-center"> - <li> - <a href="/" class="flex items-center font-bold text-xl"> - <span>Movies</span> - - <span class="text-orange-500">List</span> - </a> - </li> - <li class="md:ml-16 mt-3 md:mt-0"> - <a href="/" class="hover:text-gray-300">Movies</a> - </li> - </ul> - </div> + <div + class="container mx-auto px-4 flex flex-col md:flex-row items-center justify-between px-4 py-6" + > + <ul class="flex flex-col md:flex-row items-center"> + <li> + <a href="/" class="flex items-center font-bold text-xl"> + <span>Movies</span> + + <span class="text-orange-500">List</span> + </a> + </li> + <li class="md:ml-16 mt-3 md:mt-0"> + <a href="/" class="hover:text-gray-300">Movies</a> + </li> + </ul> + </div> </nav> |