fix(todo): checkbox focus and spinner (#4890)

Signed-off-by: Eduard Aksamitov <e@euaaaio.ru>
This commit is contained in:
Eduard Aksamitov 2024-03-06 14:22:59 +03:00 committed by GitHub
parent 1a1b978f82
commit e9cb464b92
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View File

@ -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;

View File

@ -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>