forked from pdsls.dev/pdsls
this repo has no description

fix pds display in navbar

Changed files
+5 -5
src
components
+5 -5
src/components/navbar.tsx
··· 67 67 return ( 68 68 <div class="break-anywhere mt-4 flex w-[21rem] flex-col font-mono text-sm sm:w-[23rem]"> 69 69 <div class="relative flex items-center justify-between"> 70 - <div class="flex basis-full items-center"> 71 - <Show when={pds() && props.params.pds}> 72 - <Tooltip text="PDS"> 73 - <div class="i-lucide-server mr-1 shrink-0" /> 74 - </Tooltip> 70 + <div class="min-h-1.25rem flex basis-full items-center"> 71 + <Tooltip text="PDS"> 72 + <div class="i-lucide-server mr-1 shrink-0" /> 73 + </Tooltip> 74 + <Show when={pds()}> 75 75 <A end href={pds()!} inactiveClass="text-lightblue-500 w-full hover:underline"> 76 76 {pds()} 77 77 </A>