diff --git a/src/lib/components/LinksGrid.svelte b/src/lib/components/LinksGrid.svelte
index 27584fb5..72f871bc 100644
--- a/src/lib/components/LinksGrid.svelte
+++ b/src/lib/components/LinksGrid.svelte
@@ -46,6 +46,7 @@
transition: 200ms;
width: 100%;
padding: 1rem;
+ position: relative;
}
:global(.links_grid a:hover){
scale: 1.02;
@@ -57,11 +58,23 @@
:global(.links_grid h3){
font-size: 1.5rem;
}
+:global(.links_grid a .lock-icon){
+ position: absolute;
+ top: 0.5rem;
+ right: 0.5rem;
+ width: 1.5rem;
+ height: 1.5rem;
+ fill: var(--nord0);
+ opacity: 0.6;
+}
@media (prefers-color-scheme: dark){
:global(.links_grid h3){
color: white;
}
+ :global(.links_grid a .lock-icon){
+ fill: white;
+ }
:global(.links_grid a:nth-child(4n)),
:global(.links_grid a:nth-child(4n) svg){
background-color: var(--nord6-dark);
diff --git a/src/routes/(main)/+page.svelte b/src/routes/(main)/+page.svelte
index bd429b6b..de9e57cd 100644
--- a/src/routes/(main)/+page.svelte
+++ b/src/routes/(main)/+page.svelte
@@ -108,6 +108,15 @@ section h2{
+
+
+
{#if ! data.session}