diff --git a/src/lib/components/Navigation.svelte b/src/lib/components/Navigation.svelte
index a1cbf633..9e4eb4d2 100644
--- a/src/lib/components/Navigation.svelte
+++ b/src/lib/components/Navigation.svelte
@@ -208,7 +208,7 @@
onmouseenter={() => (databaseBackHovered = true)}
onmouseleave={() => (databaseBackHovered = false)}
>
-
+
{#if databaseBackHovered}
Back to site
{/if}
@@ -529,9 +529,11 @@
display: flex;
align-items: center;
justify-content: center;
- padding: spacing.$unit (spacing.$unit * 1.5);
+ padding: calc(spacing.$unit * 1.25);
+ aspect-ratio: 1;
&:hover {
+ aspect-ratio: auto;
color: colors.$grey-30;
}
}