fix: sidebar 3 dots not appearing on safari

This commit is contained in:
naterfute
2025-09-23 14:19:33 -07:00
parent 95d93bb540
commit 3308ebe04c
2 changed files with 2 additions and 2 deletions

View File

@@ -128,7 +128,7 @@ const DashboardRouter = () => {
</NavLink>
<DropdownMenu>
<DropdownMenuTrigger asChild>
<button className='w-10 h-10 flex items-center justify-center rounded-md text-white hover:bg-[#ffffff11] p-2 cursor-pointer'>
<button className='w-10 h-10 flex items-center justify-center rounded-md text-white hover:bg-white/10 p-2 cursor-pointer'>
<svg
xmlns='http://www.w3.org/2000/svg'
width='16'

View File

@@ -59,7 +59,7 @@ const DatabasesSidebarItem = React.forwardRef<HTMLAnchorElement, { id: string; o
return (
<Can action={'database.*'} matchAny>
<NavLink
className='flex flex-row items-center transition-colors duration-200 hover:bg-[#ffffff11] rounded-md'
className='flex flex-row items-center transition-colors duration-200 hover:bg-white/10 rounded-md'
ref={ref}
to={`/server/${id}/databases`}
onClick={onClick}