Skip to content

Commit

Permalink
Replaced margin with padding and doubled padding value, updated HR color
Browse files Browse the repository at this point in the history
  • Loading branch information
Rerbun committed Mar 2, 2024
1 parent 2e89ac3 commit 2b7bcfb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/app.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1" />
%sveltekit.head%
</head>
<body data-sveltekit-preload-data="hover" class="dark:bg-neutral-800 dark:text-gray-300 mt-1">
<body data-sveltekit-preload-data="hover" class="dark:bg-neutral-800 dark:text-gray-300">
<div class="contents">%sveltekit.body%</div>
</body>
</html>
4 changes: 2 additions & 2 deletions src/routes/+layout.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
};
</script>

<div class="container px-2 py-2 mx-auto md:px-32 md:py-8">
<div class="container px-4 py-4 mx-auto md:px-32 md:py-8">
<slot />
{#if !$page.url.pathname.includes('/info')}
<div class="grid w-full grid-cols-3">
Expand Down Expand Up @@ -105,7 +105,7 @@
{/if}
</div>
</div>
<hr class="my-4" />
<hr class="my-4 bg-gray-500 dark:bg-gray-300" />
<TodoList todo={todoInstance ?? new Todo()}></TodoList>
{/if}
</div>

0 comments on commit 2b7bcfb

Please sign in to comment.