Skip to content

Commit

Permalink
Fix: remove useless padding
Browse files Browse the repository at this point in the history
  • Loading branch information
dorianim committed Mar 10, 2023
1 parent 59c0191 commit 2d89353
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion client/src/routes/manage/[id]/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@

<h2 class="text-center">Manage timer <strong>{timerData.id}</strong></h2>

<div class="p-4 m-auto w-full items-center">
<div class=" m-auto w-full items-center">
{#await submitResult}
<div class="flex items-center justify-center">
<ProgressRadial class="w-10" />
Expand Down
2 changes: 1 addition & 1 deletion client/src/routes/manage/create/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@

<h2 class="text-center">Create timer</h2>

<div class="p-4 w-full md:w-[70%] lg:w-[50%] m-auto items-center">
<div class="w-full md:w-[70%] lg:w-[50%] m-auto items-center">
{#await submitResult}
<div class="flex items-center justify-center">
<ProgressRadial class="w-10" />
Expand Down
2 changes: 1 addition & 1 deletion client/src/routes/manage/login/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@

<h2 class="text-center">Manage existing timer</h2>

<div class="p-4 w-full md:w-[70%] lg:w-[50%] m-auto items-center">
<div class="w-full md:w-[70%] lg:w-[50%] m-auto items-center">
{#await submitResult}
<div class="flex items-center justify-center">
<ProgressRadial class="w-10" />
Expand Down

0 comments on commit 2d89353

Please sign in to comment.