fix details

This commit is contained in:
vcoppe
2024-08-12 14:18:41 +02:00
parent 195e54af6d
commit fb66cedfc3
4 changed files with 7 additions and 7 deletions

View File

@@ -32,7 +32,7 @@
{#if titleOnly} {#if titleOnly}
{metadata.title} {metadata.title}
{:else} {:else}
<div class="markdown space-y-3"> <div class="markdown flex flex-col gap-3">
<svelte:component this={module} /> <svelte:component this={module} />
</div> </div>
{/if} {/if}
@@ -47,14 +47,13 @@
@apply text-foreground; @apply text-foreground;
@apply text-3xl; @apply text-3xl;
@apply font-semibold; @apply font-semibold;
@apply mb-6; @apply mb-3 pt-6;
} }
:global(.markdown h2) { :global(.markdown h2) {
@apply text-foreground; @apply text-foreground;
@apply text-2xl; @apply text-2xl;
@apply font-semibold; @apply font-semibold;
@apply mb-3;
@apply pt-3; @apply pt-3;
} }

View File

@@ -3,7 +3,7 @@ title: View options
--- ---
<script lang="ts"> <script lang="ts">
import { MountainSnow, GalleryVertical, Map, Layers2, Coins, Milestone, Box } from 'lucide-svelte'; import { ChartArea, GalleryVertical, Map, Layers2, Coins, Milestone, Box } from 'lucide-svelte';
import DocsNote from '$lib/components/docs/DocsNote.svelte'; import DocsNote from '$lib/components/docs/DocsNote.svelte';
</script> </script>
@@ -11,7 +11,7 @@ title: View options
This menu provides options to rearrange the interface and the map view. This menu provides options to rearrange the interface and the map view.
### <MountainSnow size="16" class="inline-block" style="margin-bottom: 2px" /> Elevation profile ### <ChartArea size="16" class="inline-block" style="margin-bottom: 2px" /> Elevation profile
Hide the elevation profile to make room for the map, or show it to inspect the current selection. Hide the elevation profile to make room for the map, or show it to inspect the current selection.

View File

@@ -4,6 +4,7 @@
"app_title": "the online GPX file editor", "app_title": "the online GPX file editor",
"embed_title": "the online GPX file editor", "embed_title": "the online GPX file editor",
"help_title": "help", "help_title": "help",
"404_title": "page not found",
"description": "View, edit, and create GPX files online with advanced route planning capabilities and file processing tools, beautiful maps and detailed data visualizations." "description": "View, edit, and create GPX files online with advanced route planning capabilities and file processing tools, beautiful maps and detailed data visualizations."
}, },
"menu": { "menu": {

View File

@@ -7,8 +7,8 @@
import { guides } from '$lib/components/docs/docs'; import { guides } from '$lib/components/docs/docs';
</script> </script>
<div class="p-12 flex flex-row gap-24"> <div class="px-12 pt-6 pb-12 flex flex-row gap-24">
<div class="hidden md:flex flex-col gap-2 w-40 sticky top-[105px] self-start shrink-0"> <div class="hidden md:flex flex-col gap-2 w-40 sticky top-[108px] self-start shrink-0">
{#each Object.keys(guides) as guide} {#each Object.keys(guides) as guide}
<Button <Button
variant="link" variant="link"