Skip to content

Commit

Permalink
fix: correct UI element alignement
Browse files Browse the repository at this point in the history
  • Loading branch information
shezard committed Feb 11, 2024
1 parent 3cee3a7 commit d0c2847
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/lib/components/Chrono.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@
};
</script>

<div class="py-4 flex justify-around">
<RadioGroup>
<div class="p-4 flex justify-between">
<RadioGroup class="w-full">
<RadioItem bind:group={$poseDuration} name="pose-duration" value={minute}
>(1 minute)</RadioItem
>
Expand All @@ -56,7 +56,7 @@
</RadioGroup>
</div>

<div class="flex justify-around pb-4">
<div class="flex justify-between pb-4 px-4">
<button class="px-2 rounded variant-ringed" on:click={start}>
<span class={$applicationState === 'started' ? 'animate-ping' : ''}>
<i class="mi-play" />
Expand All @@ -68,7 +68,7 @@
<button class="px-2 rounded variant-ringed" on:click={clear}>
<i class="mi-refresh" /> Clear
</button>
<span class="px-2">
<span class="px-2 rounded variant-ringed">
{$mm}:{$ss}
</span>
</div>

0 comments on commit d0c2847

Please sign in to comment.