Skip to content

Commit

Permalink
Merge pull request #53 from Llandy3d/discover-position
Browse files Browse the repository at this point in the history
Adjust Discover position
  • Loading branch information
Llandy3d authored Mar 7, 2024
2 parents 9f4c7ee + 979cc43 commit 8571a71
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/routes/Sidebar.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
<SidebarSection title="Environments">
<EnvironmentList bind:environments />
</SidebarSection>
<SidebarSection title="Discover">
<SidebarSection title="Discover" class="mt-auto pb-2">
<div class="mt-1 flex flex-col items-start text-sm">
<a
href="https://grafana.com/docs/k6/latest/"
Expand Down
2 changes: 1 addition & 1 deletion src/routes/SidebarSection.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
export let title: string;
</script>

<section>
<section class={$$props.class}>
<h2 class="text-left text-sm font-bold uppercase">{title}</h2>
<slot />
</section>

0 comments on commit 8571a71

Please sign in to comment.