Skip to content

Commit

Permalink
APP-3851: Adjust navigation map spacing (viamrobotics#487)
Browse files Browse the repository at this point in the history
  • Loading branch information
ethanlookpotts authored Feb 27, 2024
1 parent 66b671d commit 514b108
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packages/blocks/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@viamrobotics/prime-blocks",
"version": "0.0.27",
"version": "0.0.28",
"publishConfig": {
"access": "public"
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ const handleUpdateObstacle = (event: CustomEvent<Obstacle[]>) => {
};
</script>

<nav class="sm:h-full sm:w-[350px]">
<nav class="py-4 pl-4 sm:h-full sm:w-[350px]">
<ol class="mb-2 flex flex-wrap items-center">
{#each $tabs as tabTitle}
{@const selected = $tab === tabTitle}
Expand Down
2 changes: 1 addition & 1 deletion packages/blocks/src/routes/navigation-map.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ $: map?.setCenter({ lat: 40.7, lng: -74.17 });

<div class="px-12">
<div
class="relative h-[800px] w-full border border-gray-200 p-4 sm:aspect-video sm:h-auto"
class="relative h-[800px] w-full border border-gray-200 sm:aspect-video sm:h-auto"
>
<NavigationMap
bind:map
Expand Down

0 comments on commit 514b108

Please sign in to comment.