+15
frontend/src/routes/login/+page.svelte
+15
frontend/src/routes/login/+page.svelte
···
126
</div>
127
{/if}
128
</div>
129
+
130
+
<a href="/" class="back-link">← back to home</a>
131
</div>
132
</div>
133
···
263
padding: 0.15rem 0.4rem;
264
border-radius: var(--radius-sm);
265
font-size: 0.85em;
266
+
}
267
+
268
+
.back-link {
269
+
display: block;
270
+
text-align: center;
271
+
margin-top: 1.5rem;
272
+
color: var(--text-tertiary);
273
+
font-size: var(--text-sm);
274
+
text-decoration: none;
275
+
}
276
+
277
+
.back-link:hover {
278
+
color: var(--text-secondary);
279
}
280
281
@media (max-width: 480px) {