Skip to content

Commit 2d89353

Browse files
committed
Fix: remove useless padding
1 parent 59c0191 commit 2d89353

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

client/src/routes/manage/[id]/+page.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242

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

45-
<div class="p-4 m-auto w-full items-center">
45+
<div class=" m-auto w-full items-center">
4646
{#await submitResult}
4747
<div class="flex items-center justify-center">
4848
<ProgressRadial class="w-10" />

client/src/routes/manage/create/+page.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949

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

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

client/src/routes/manage/login/+page.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939

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

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

0 commit comments

Comments
 (0)