diff --git a/packages/ui/src/components/CheckBox.svelte b/packages/ui/src/components/CheckBox.svelte
index f1bbcfc5bc..54b7b57e60 100644
--- a/packages/ui/src/components/CheckBox.svelte
+++ b/packages/ui/src/components/CheckBox.svelte
@@ -148,7 +148,7 @@
       background-color: transparent;
 
       &:focus-within {
-        background-color: var(--button-secondary-hover-BackgroundColor);
+        border-radius: 0.25rem;
         box-shadow: 0 0 0 0.125rem var(--global-focus-inset-BorderColor);
         outline: 0.125rem solid var(--global-focus-BorderColor);
         outline-offset: 0.125rem;
diff --git a/plugins/time-resources/src/components/EditToDo.svelte b/plugins/time-resources/src/components/EditToDo.svelte
index ee8a25d705..e5b1afb153 100644
--- a/plugins/time-resources/src/components/EditToDo.svelte
+++ b/plugins/time-resources/src/components/EditToDo.svelte
@@ -113,7 +113,7 @@
       {#if object}
         <CheckBox on:value={markDone} checked={object.doneOn != null} kind={'todo'} />
       {:else}
-        <Spinner size={'medium'} />
+        <Spinner size={'small'} />
       {/if}
     </div>
   </svelte:fragment>