diff --git a/src/lib/components/Navigation.svelte b/src/lib/components/Navigation.svelte index 9e4eb4d2..bcb14697 100644 --- a/src/lib/components/Navigation.svelte +++ b/src/lib/components/Navigation.svelte @@ -8,6 +8,7 @@ import { createQuery } from '@tanstack/svelte-query' import { crewQueries } from '$lib/api/queries/crew.queries' import Button from './ui/Button.svelte' + import Tooltip from './ui/Tooltip.svelte' import Icon from './Icon.svelte' import DropdownItem from './ui/dropdown/DropdownItem.svelte' import NotificationBadge from './ui/NotificationBadge.svelte' @@ -147,9 +148,6 @@ // Invitations modal state let invitationsModalOpen = $state(false) - // Database back button hover state - let databaseBackHovered = $state(false) - // Query for the user's crew (to determine if phantom claims should be fetched) const myCrewQuery = createQuery(() => ({ ...crewQueries.myCrew(), @@ -201,18 +199,15 @@ @@ -533,14 +528,9 @@ aspect-ratio: 1; &:hover { - aspect-ratio: auto; color: colors.$grey-30; } } - - .database-back-label { - margin-left: spacing.$unit-half; - } } .database-subnav {